Commit 3b3b4f23 authored by Steve Kenton's avatar Steve Kenton Committed by Peter Korsgaard
Browse files

ffmpeg: Add ffprobe option



Signed-off-by Stephen M. Kenton <skenton@ou.edu>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent a2ff50d2
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -49,6 +49,12 @@ config BR2_PACKAGE_FFMPEG_FFSERVER
	help
	  FFserver is a streaming server for both audio and video.

config BR2_PACKAGE_FFMPEG_FFPROBE
	bool "Build ffprobe"
	help
	  FFprobe is a utility to determine the audio and video
	  characteristics of a container file.

config BR2_PACKAGE_FFMPEG_AVRESAMPLE
	bool "Build libavresample"
	help
+6 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@ FFMPEG_CONF_OPTS = \
	--enable-logging \
	--enable-optimizations \
	--disable-extra-warnings \
	--disable-ffprobe \
	--enable-avdevice \
	--enable-avcodec \
	--enable-avformat \
@@ -104,6 +103,12 @@ else
FFMPEG_CONF_OPTS += --disable-avresample
endif

ifeq ($(BR2_PACKAGE_FFMPEG_FFPROBE),y)
FFMPEG_CONF_OPTS += --enable-ffprobe
else
FFMPEG_CONF_OPTS += --disable-ffprobe
endif

ifeq ($(BR2_PACKAGE_FFMPEG_POSTPROC),y)
FFMPEG_CONF_OPTS += --enable-postproc
else