ffmpeg: Add ffprobe option

Signed-off-by Stephen M. Kenton <skenton@ou.edu>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Steve Kenton 2014-12-01 18:55:35 -06:00 committed by Peter Korsgaard
parent a2ff50d2ae
commit 3b3b4f2331
2 changed files with 12 additions and 1 deletions

View File

@ -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

View File

@ -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