From 2522bff5657c7566ac956998bcb32a0c9c3d2667 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 11 Feb 2015 17:32:41 +0100 Subject: video/filters: simplify libavfilter bridge Remove the confusing crap that allowed a filter using the libavfilter bridge to be compiled without libavfilter. Instead, compile the wrappers only if libavfilter is enabled at compile time. The only filter which still requires it is vf_stereo3d (unfortunately). Special-case this one. (The whole filter and how it interacts with lavfi is pure braindeath anyway.) --- video/filter/vf_lavfi.c | 1 + 1 file changed, 1 insertion(+) (limited to 'video/filter/vf_lavfi.c') diff --git a/video/filter/vf_lavfi.c b/video/filter/vf_lavfi.c index a356229a30..cb4c348552 100644 --- a/video/filter/vf_lavfi.c +++ b/video/filter/vf_lavfi.c @@ -38,6 +38,7 @@ #include #include +#include "config.h" #include "common/av_common.h" #include "common/msg.h" #include "options/m_option.h" -- cgit v1.2.3