mirror of
https://git.busybox.net/buildroot.git
synced 2025-01-01 09:54:19 +08:00
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:
parent
a2ff50d2ae
commit
3b3b4f2331
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user