summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-05-25 19:01:32 +0200
committerwm4 <wm4@nowhere>2016-05-25 23:51:24 +0200
commit15a5d33b7930b53cbc4503053211aee91d6e9659 (patch)
tree3cf1d57566506af85c6220817ed72101efb2ebf6 /wscript_build.py
parentb9cc33de58c3e58a93c5e5316e5734922f5a44b9 (diff)
downloadmpv-15a5d33b7930b53cbc4503053211aee91d6e9659.tar.bz2
mpv-15a5d33b7930b53cbc4503053211aee91d6e9659.tar.xz
vf_vavpp: move frame handling to separate file
Move the handling of the future/past frames and the associated dataflow rules to a separate source file. While this on its own seems rather questionable and just inflates the code, I intend to reuse it for other filters. The logic is annoying enough that it shouldn't be duplicated a bunch of times. (I considered other ways of sharing this logic, such as an uber- deinterlace filter, which would access the hardware deinterlacer via a different API. Although that sounds like kind of the right approach, this would have other problems, so let's not, at least for now.)
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 61830b5dff..179d810422 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -297,6 +297,7 @@ def build(ctx):
( "video/decode/vd_lavc.c" ),
( "video/decode/videotoolbox.c", "videotoolbox-hwaccel" ),
( "video/decode/vdpau.c", "vdpau-hwaccel" ),
+ ( "video/filter/refqueue.c" ),
( "video/filter/vf.c" ),
( "video/filter/vf_buffer.c" ),
( "video/filter/vf_crop.c" ),