summaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-06-30 01:20:06 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:05 +0200
commitfb8d240c4d045ca254aa6693c48aecc75954cba0 (patch)
treea7cd07e33d2760c15d646afbbb73d6c86a9fa77b /filters
parentc8b8fe9981c654c0539ca77056ed6451a3da7367 (diff)
downloadmpv-fb8d240c4d045ca254aa6693c48aecc75954cba0.tar.bz2
mpv-fb8d240c4d045ca254aa6693c48aecc75954cba0.tar.xz
vf_vapourynth: remove Lua backend
I once created this because someone wanted to use vapoursynth without the Python dependency. No idea if anyone ever actually used it. It's sort of icky (it calls itself "lazy" to preempt complaints about how much it sucks), and complicates the build process. Kill it. It seems much more promising to have something like this: https://github.com/vapoursynth/vapoursynth/issues/386 This would either solve the build distribution problem by relaxing the Python dependency, and/or allow a Lua backend to be included without pain.
Diffstat (limited to 'filters')
-rw-r--r--filters/user_filters.c5
-rw-r--r--filters/user_filters.h1
2 files changed, 1 insertions, 5 deletions
diff --git a/filters/user_filters.c b/filters/user_filters.c
index 89d7743d53..e1b7a8bce1 100644
--- a/filters/user_filters.c
+++ b/filters/user_filters.c
@@ -64,12 +64,9 @@ const struct mp_user_filter_entry *vf_list[] = {
&vf_lavfi,
&vf_lavfi_bridge,
&vf_sub,
-#if HAVE_VAPOURSYNTH_CORE && HAVE_VAPOURSYNTH
+#if HAVE_VAPOURSYNTH
&vf_vapoursynth,
#endif
-#if HAVE_VAPOURSYNTH_CORE && HAVE_VAPOURSYNTH_LAZY
- &vf_vapoursynth_lazy,
-#endif
#if HAVE_VDPAU
&vf_vdpaupp,
#endif
diff --git a/filters/user_filters.h b/filters/user_filters.h
index a2cca7cba0..88cb859a71 100644
--- a/filters/user_filters.h
+++ b/filters/user_filters.h
@@ -29,7 +29,6 @@ extern const struct mp_user_filter_entry vf_lavfi;
extern const struct mp_user_filter_entry vf_lavfi_bridge;
extern const struct mp_user_filter_entry vf_sub;
extern const struct mp_user_filter_entry vf_vapoursynth;
-extern const struct mp_user_filter_entry vf_vapoursynth_lazy;
extern const struct mp_user_filter_entry vf_format;
extern const struct mp_user_filter_entry vf_vdpaupp;
extern const struct mp_user_filter_entry vf_vavpp;