diff options
author | Benoît Thébaudeau <benoit@wsystem.com> | 2015-06-12 12:53:03 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-06-12 21:20:47 +0200 |
commit | 316a0a43a5577c5977984654bb1de3b86260e056 (patch) | |
tree | 9b808d69c07e5ce977e7e9b55f855cfe3b5688f8 /package/ffmpeg | |
parent | 954c09ae62374d0917ce65581d60e50df8747191 (diff) | |
download | buildroot-316a0a43a5577c5977984654bb1de3b86260e056.tar.gz buildroot-316a0a43a5577c5977984654bb1de3b86260e056.zip |
ffmpeg: fix dependencies
The ffmpeg binary does not require swscale, but ffplay needs it.
ffserver needs fork().
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ffmpeg')
-rw-r--r-- | package/ffmpeg/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/ffmpeg/Config.in b/package/ffmpeg/Config.in index 00163ba273..e5981fee55 100644 --- a/package/ffmpeg/Config.in +++ b/package/ffmpeg/Config.in @@ -25,7 +25,6 @@ config BR2_PACKAGE_FFMPEG_NONFREE config BR2_PACKAGE_FFMPEG_FFMPEG bool "Build ffmpeg (the command line application)" - select BR2_PACKAGE_FFMPEG_SWSCALE default y help FFmpeg is a very fast video and audio converter. @@ -36,6 +35,7 @@ config BR2_PACKAGE_FFMPEG_FFMPEG config BR2_PACKAGE_FFMPEG_FFPLAY bool "Build ffplay" + select BR2_PACKAGE_FFMPEG_SWSCALE select BR2_PACKAGE_SDL help FFplay is a very simple and portable media player using the @@ -44,6 +44,7 @@ config BR2_PACKAGE_FFMPEG_FFPLAY config BR2_PACKAGE_FFMPEG_FFSERVER bool "Build ffserver" + depends on BR2_USE_MMU # fork() help FFserver is a streaming server for both audio and video. |