build: fix libavfilter dependency for vf_mirror

Since e207c24b32, vf_mirror requires
libavfilter.

Signed-off-by: wm4 <wm4@nowhere>
This commit is contained in:
xylosper 2015-04-21 00:00:00 +09:00 committed by wm4
parent 88d3058681
commit ebe2c2b6d1
2 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ static const vf_info_t *const filter_list[] = {
&vf_info_format,
&vf_info_noformat,
&vf_info_flip,
&vf_info_mirror,
#if HAVE_LIBAVFILTER
&vf_info_mirror,
&vf_info_lavfi,
&vf_info_rotate,
&vf_info_noise,

View File

@ -305,7 +305,7 @@ def build(ctx):
( "video/filter/vf_gradfun.c", "libavfilter"),
( "video/filter/vf_hqdn3d.c", "libavfilter"),
( "video/filter/vf_lavfi.c", "libavfilter"),
( "video/filter/vf_mirror.c" ),
( "video/filter/vf_mirror.c", "libavfilter"),
( "video/filter/vf_noformat.c" ),
( "video/filter/vf_noise.c", "libavfilter"),
( "video/filter/vf_pullup.c", "libavfilter"),