summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-16 10:25:05 +0100
committerwm4 <wm4@nowhere>2014-03-16 13:19:29 +0100
commit98cd2c41226c96e0c4d0e317c0272cb0ed4ca612 (patch)
treee152641c4a35b52d56c168586dd02f5bd23de2ab /video
parentc9d328319ebe88fcb3a978252c72ca762cfdaecd (diff)
downloadmpv-98cd2c41226c96e0c4d0e317c0272cb0ed4ca612.tar.bz2
mpv-98cd2c41226c96e0c4d0e317c0272cb0ed4ca612.tar.xz
build: simplify libavfilter configure checks
This is all not needed anymore. In particular, remove all configure switches except --enable-libavfilter.
Diffstat (limited to 'video')
-rw-r--r--video/filter/vf.c2
-rw-r--r--video/filter/vf_lavfi.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 001363b5fb..0ab5a2c651 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -84,7 +84,7 @@ static const vf_info_t *const filter_list[] = {
#if HAVE_LIBPOSTPROC
&vf_info_pp,
#endif
-#if HAVE_VF_LAVFI
+#if HAVE_LIBAVFILTER
&vf_info_lavfi,
#endif
diff --git a/video/filter/vf_lavfi.h b/video/filter/vf_lavfi.h
index 48b658041d..ca811412f5 100644
--- a/video/filter/vf_lavfi.h
+++ b/video/filter/vf_lavfi.h
@@ -8,7 +8,7 @@
struct vf_lw_opts;
-#if HAVE_VF_LAVFI
+#if HAVE_LIBAVFILTER
extern const struct m_sub_options vf_lw_conf;