diff options
author | wm4 <wm4@nowhere> | 2015-09-03 23:55:36 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-09-03 23:55:36 +0200 |
commit | 091bfa3abf2f28b37fa12cca6b4c248c31d27965 (patch) | |
tree | f5406c1b373ed91a914712e3c0d25076449df123 /TOOLS/old-makefile | |
parent | e1fbd3b790b5fe1ae6efc1dd0477c2da88a5b8dc (diff) |
audio/filter: remove some useless filters
All of these filters are considered not useful anymore by us. Some have
replacements in libavfilter (useable through af_lavfi).
af_center, af_extrastereo, af_karaoke, af_sinesuppress, af_sub,
af_surround, af_sweep: pretty simple and useless filters which probably
nobody ever wants.
af_ladspa: has a replacement in libavfilter.
af_hrtf: the algorithm doesn't work properly on most sources, and the
implementation was buggy and complicated. (The filter was inherited from
MPlayer; but even in mpv times we had to apply fixes that fixed major
issues with added noise.) There is a ladspa filter if you still want to
use it.
af_export: I'm not even sure what this is supposed to do. Possibly it
was meant for GUIs rendering audio visualizations, but it couldn't
really work well. For example, the size of the audio depended on the
samplerate (fixed number of samples only), and it couldn't retrieve the
complete audio, only fragments. If this is really needed for GUIs, mpv
should add native visualization, or a proper API for it.
Diffstat (limited to 'TOOLS/old-makefile')
-rw-r--r-- | TOOLS/old-makefile | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/TOOLS/old-makefile b/TOOLS/old-makefile index 4f5737595f..f3e4d7ea86 100644 --- a/TOOLS/old-makefile +++ b/TOOLS/old-makefile @@ -35,7 +35,6 @@ SOURCES-$(DVDREAD) += stream/stream_dvd.c \ SOURCES-$(DVDNAV) += stream/stream_dvdnav.c \ stream/stream_dvd_common.c -SOURCES-$(LADSPA) += audio/filter/af_ladspa.c SOURCES-$(RUBBERBAND) += audio/filter/af_rubberband.c SOURCES-$(LIBASS) += sub/ass_mp.c sub/sd_ass.c \ demux/demux_libass.c @@ -123,28 +122,17 @@ SOURCES = audio/audio.c \ audio/decode/ad_spdif.c \ audio/decode/dec_audio.c \ audio/filter/af.c \ - audio/filter/af_center.c \ audio/filter/af_channels.c \ audio/filter/af_delay.c \ audio/filter/af_equalizer.c \ - audio/filter/af_export.c \ - audio/filter/af_extrastereo.c \ audio/filter/af_format.c \ - audio/filter/af_hrtf.c \ - audio/filter/af_karaoke.c \ audio/filter/af_lavcac3enc.c \ audio/filter/af_lavrresample.c \ audio/filter/af_pan.c \ audio/filter/af_scaletempo.c \ - audio/filter/af_sinesuppress.c \ - audio/filter/af_sub.c \ - audio/filter/af_surround.c \ - audio/filter/af_sweep.c \ audio/filter/af_drc.c \ audio/filter/af_volume.c \ - audio/filter/filter.c \ audio/filter/tools.c \ - audio/filter/window.c \ audio/out/ao.c \ audio/out/ao_null.c \ audio/out/ao_pcm.c \ |