From 33f822b7154b8035984bd41607c0c2b1edd0c9fa Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 12 Apr 2014 17:51:19 +0200 Subject: 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. --- wscript_build.py | 1 + 1 file changed, 1 insertion(+) (limited to 'wscript_build.py') 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" ), -- cgit v1.2.3