summaryrefslogtreecommitdiffstats
path: root/old-makefile
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-11 17:32:41 +0100
committerwm4 <wm4@nowhere>2015-02-11 17:35:58 +0100
commit2522bff5657c7566ac956998bcb32a0c9c3d2667 (patch)
tree5619032a1a103f1d101868c1843dca23b69ce8fb /old-makefile
parent73d23a94059e40fd1209912d9365a2fb910eb8b1 (diff)
downloadmpv-2522bff5657c7566ac956998bcb32a0c9c3d2667.tar.bz2
mpv-2522bff5657c7566ac956998bcb32a0c9c3d2667.tar.xz
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.)
Diffstat (limited to 'old-makefile')
-rw-r--r--old-makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/old-makefile b/old-makefile
index 0aec7b4b73..c9eb218fca 100644
--- a/old-makefile
+++ b/old-makefile
@@ -100,6 +100,14 @@ SOURCES-$(WAYLAND) += video/out/vo_wayland.c \
video/out/wayland/memfile.c
SOURCES-$(LIBAVFILTER) += video/filter/vf_lavfi.c \
+ video/filter/vf_delogo.c \
+ video/filter/vf_gradfun.c \
+ video/filter/vf_hqdn3d.c \
+ video/filter/vf_noise.c \
+ video/filter/vf_pullup.c \
+ video/filter/vf_rotate.c \
+ video/filter/vf_unsharp.c \
+ video/filter/vf_yadif.c \
audio/filter/af_lavfi.c
SOURCES-$(LUA) += player/lua.c
@@ -251,25 +259,17 @@ SOURCES = audio/audio.c \
video/filter/vf.c \
video/filter/vf_buffer.c \
video/filter/vf_crop.c \
- video/filter/vf_delogo.c \
video/filter/vf_dsize.c \
video/filter/vf_eq.c \
video/filter/vf_expand.c \
video/filter/vf_flip.c \
video/filter/vf_format.c \
- video/filter/vf_gradfun.c \
- video/filter/vf_hqdn3d.c \
video/filter/vf_mirror.c \
video/filter/vf_noformat.c \
- video/filter/vf_noise.c \
- video/filter/vf_pullup.c \
- video/filter/vf_rotate.c \
video/filter/vf_scale.c \
video/filter/vf_screenshot.c \
video/filter/vf_stereo3d.c \
video/filter/vf_sub.c \
- video/filter/vf_unsharp.c \
- video/filter/vf_yadif.c \
video/out/bitmap_packer.c \
video/out/aspect.c \
video/out/filter_kernels.c \