summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-06-30 01:10:44 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:05 +0200
commitc8b8fe9981c654c0539ca77056ed6451a3da7367 (patch)
treeeeb90f352ead8588e0756be1e97a25595baca495 /wscript_build.py
parentc6773692adba9d65fd43313f07a8aab9af2aa80d (diff)
downloadmpv-c8b8fe9981c654c0539ca77056ed6451a3da7367.tar.bz2
mpv-c8b8fe9981c654c0539ca77056ed6451a3da7367.tar.xz
audio: remove unreferenced af_lavrresample
This filter wasn't referenced anywhere and thus was dead code. It should have been in the audio filter list in user_filters.c. This was intended as compatibility wrapper (to avoid breaking old command lines and config files), and has no real use. Apparently I forgot to add it to the filter list (did I even test this shit?), and so it was rotting around for 1.5 years doing nothing (just like myself). Note that users can just use the libavfilter provided filter to force resampling, just that it has a different name and different options. There's also af_format to force inserting auto conversion through the internal f_swsresample filter.
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 2c60a8dcf6..8f2f804a39 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -228,7 +228,6 @@ def build(ctx):
( "audio/decode/ad_spdif.c" ),
( "audio/filter/af_format.c" ),
( "audio/filter/af_lavcac3enc.c" ),
- ( "audio/filter/af_lavrresample.c" ),
( "audio/filter/af_rubberband.c", "rubberband" ),
( "audio/filter/af_scaletempo.c" ),
( "audio/fmt-conversion.c" ),