summaryrefslogtreecommitdiffstats
path: root/player
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 /player
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 'player')
-rw-r--r--player/configfiles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/configfiles.c b/player/configfiles.c
index 65e402b184..8ecb727389 100644
--- a/player/configfiles.c
+++ b/player/configfiles.c
@@ -56,7 +56,7 @@ bool mp_parse_cfgfiles(struct MPContext *mpctx)
char *conffile;
// The #if is a stupid hack to avoid errors if libavfilter is not available.
-#if HAVE_VF_LAVFI && HAVE_ENCODING
+#if HAVE_LIBAVFILTER && HAVE_ENCODING
conffile = mp_find_config_file(tmp, mpctx->global, "encoding-profiles.conf");
if (conffile && mp_path_exists(conffile))
m_config_parse_config_file(mpctx->mconfig, conffile, 0);