Signed-off-by Stephen M. Kenton <skenton@ou.edu>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
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
--enable-logging \
--enable-optimizations \
--disable-extra-warnings \
- --disable-ffprobe \
--enable-avdevice \
--enable-avcodec \
--enable-avformat \
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