diff options
author | Martin Storsjö <martin@martin.st> | 2012-11-09 14:32:38 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-11-27 17:05:01 +0200 |
commit | 54fd593a0e6366fc7d79b5852b4e72016d43cc00 (patch) | |
tree | 870b3e4cd01789806622e8ea1a476b117c2d2209 /configure | |
parent | d5e83122bdc39b9c0278b9b4f6c49baa99223bd6 (diff) | |
download | ffmpeg-54fd593a0e6366fc7d79b5852b4e72016d43cc00.tar.gz |
configure: Enable avconv filter dependencies automatically
This makes sure minimal configurations such as
"--disable-everything --enable-avconv" will enable the filters
necessary for running avconv, instead of just keeping avconv
disabled (even if the user specified "--enable-avconv").
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1742,9 +1742,9 @@ avresample_deps="avutil" swscale_deps="avutil" # programs -avconv_deps="avcodec avfilter avformat avresample swscale - aformat_filter asyncts_filter - format_filter fps_filter scale_filter setpts_filter" +avconv_deps="avcodec avfilter avformat avresample swscale" +avconv_select="aformat_filter asyncts_filter + format_filter fps_filter scale_filter setpts_filter" avplay_deps="avcodec avformat swscale sdl" avplay_select="rdft" avprobe_deps="avcodec avformat" |