diff options
author | xylosper <darklin20@gmail.com> | 2015-04-21 00:00:00 +0900 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-04-20 17:08:29 +0200 |
commit | ebe2c2b6d19357f73b9fc82de2a47a2aa321e44a (patch) | |
tree | 7423d3359104b2f454c26d4b5bae46038ea0d2e0 /video | |
parent | 88d30586814f86297ce98edb5c45678fe58625f7 (diff) |
build: fix libavfilter dependency for vf_mirror
Since e207c24b32a457859ab6e3a5b1f5f9eaeea36ed1, vf_mirror requires
libavfilter.
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'video')
-rw-r--r-- | video/filter/vf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c index 9bbe126823..4f9f43f2e0 100644 --- a/video/filter/vf.c +++ b/video/filter/vf.c @@ -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, |