summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 41827906ef..38281ceac7 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -324,7 +324,6 @@ def build(ctx):
( "video/filter/vf_buffer.c" ),
( "video/filter/vf_crop.c" ),
( "video/filter/vf_d3d11vpp.c", "d3d-hwaccel" ),
- ( "video/filter/vf_dlopen.c", "dlopen" ),
( "video/filter/vf_dsize.c" ),
( "video/filter/vf_eq.c" ),
( "video/filter/vf_expand.c" ),
@@ -598,17 +597,6 @@ def build(ctx):
ctx.install_as(ctx.env.LIBDIR + '/pkgconfig/mpv.pc', 'libmpv/mpv.pc')
- if ctx.dependency_satisfied("vf-dlopen-filters"):
- dlfilters = "telecine tile rectangle framestep ildetect".split()
- for dlfilter in dlfilters:
- ctx(
- target = dlfilter,
- source = ['TOOLS/vf_dlopen/'+dlfilter+'.c',
- 'TOOLS/vf_dlopen/filterutils.c'],
- includes = [ctx.srcnode.abspath() + '/video/filter'],
- features = 'c cshlib',
- install_path = ctx.env.LIBDIR + '/mpv' )
-
if ctx.dependency_satisfied('html-build'):
_build_html(ctx)