summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-12 17:51:19 +0200
committerwm4 <wm4@nowhere>2014-04-12 19:31:50 +0200
commit33f822b7154b8035984bd41607c0c2b1edd0c9fa (patch)
tree7392f47dd082c1eb51f29c7fac9c5a62ceda6b04 /wscript_build.py
parent839c3ae64b184ba9d37621507d74cb6052582d0b (diff)
downloadmpv-33f822b7154b8035984bd41607c0c2b1edd0c9fa.tar.bz2
mpv-33f822b7154b8035984bd41607c0c2b1edd0c9fa.tar.xz
video: add VapourSynth filter bridge
Mainly meant to apply simple VapourSynth filters to video at runtime. This has various restrictions, which are listed in the manpage. Additionally, this actually copies video frames when converting frame references from mpv to VapourSynth, and a second time when going from VapourSynth to mpv. This is inefficient and could probably be easily improved. But for now, this is simpler, and in fact I'm not sure if we even can references VapourSynth frames after the core has been destroyed.
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 9b7319afc6..590429413d 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -320,6 +320,7 @@ def build(ctx):
( "video/filter/vf_sub.c" ),
( "video/filter/vf_swapuv.c" ),
( "video/filter/vf_unsharp.c" ),
+ ( "video/filter/vf_vapoursynth.c", "vapoursynth" ),
( "video/filter/vf_vavpp.c", "vaapi-vpp"),
( "video/filter/vf_yadif.c" ),
( "video/out/aspect.c" ),