summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-12 01:31:20 +0200
committerwm4 <wm4@nowhere>2014-10-12 01:33:10 +0200
commit3093d93e1f0baadf4c1ec866adacb244d10fabbe (patch)
tree7a9d90f0eabaa0388636d874dde8ac2a09498967 /video/filter/vf.c
parent1b4f51ae73a41a6c8b335d76b3dab3814cebaaa8 (diff)
downloadmpv-3093d93e1f0baadf4c1ec866adacb244d10fabbe.tar.bz2
mpv-3093d93e1f0baadf4c1ec866adacb244d10fabbe.tar.xz
vf_vapoursynth: add standalone Lua scripting
Diffstat (limited to 'video/filter/vf.c')
-rw-r--r--video/filter/vf.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index f00e9689c6..4910974d6a 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -71,6 +71,7 @@ extern const vf_info_t vf_info_dlopen;
extern const vf_info_t vf_info_lavfi;
extern const vf_info_t vf_info_vaapi;
extern const vf_info_t vf_info_vapoursynth;
+extern const vf_info_t vf_info_vapoursynth_lazy;
extern const vf_info_t vf_info_vdpaupp;
extern const vf_info_t vf_info_buffer;
@@ -114,9 +115,12 @@ static const vf_info_t *const filter_list[] = {
#if HAVE_DLOPEN
&vf_info_dlopen,
#endif
-#if HAVE_VAPOURSYNTH
+#if HAVE_VAPOURSYNTH_CORE && HAVE_VAPOURSYNTH
&vf_info_vapoursynth,
#endif
+#if HAVE_VAPOURSYNTH_CORE && HAVE_VAPOURSYNTH_LAZY
+ &vf_info_vapoursynth_lazy,
+#endif
#if HAVE_VAAPI_VPP
&vf_info_vaapi,
#endif