summaryrefslogtreecommitdiffstats
path: root/audio/filter/af.c
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2017-03-17 16:49:28 +0100
committerwm4 <wm4@nowhere>2017-03-25 12:57:10 +0100
commit222899fbbe523320e66ae1600fabe45b58d48686 (patch)
treecdd094f983583de621ebb3d69c1bd426c5e142f9 /audio/filter/af.c
parentd663a0e90dc0df3d8c50a471b918d8a6c6f78da5 (diff)
downloadmpv-222899fbbe523320e66ae1600fabe45b58d48686.tar.bz2
mpv-222899fbbe523320e66ae1600fabe45b58d48686.tar.xz
af_drc: remove
Remove low quality drc filter. Anyone whishing to have dynamic range compression should use the much more powerful acompressor ffmpeg filter: mpv --af=lavfi=[acompressor] INPUT Or with parameters: mpv --af=lavfi=[acompressor=threshold=-25dB:ratio=3:makeup=8dB] INPUT Refer to https://ffmpeg.org/ffmpeg-filters.html#acompressor for a full list of supported parameters. Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'audio/filter/af.c')
-rw-r--r--audio/filter/af.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/audio/filter/af.c b/audio/filter/af.c
index e6f19b3e37..31f4e45614 100644
--- a/audio/filter/af.c
+++ b/audio/filter/af.c
@@ -36,7 +36,6 @@ extern const struct af_info af_info_format;
extern const struct af_info af_info_volume;
extern const struct af_info af_info_equalizer;
extern const struct af_info af_info_pan;
-extern const struct af_info af_info_drc;
extern const struct af_info af_info_lavcac3enc;
extern const struct af_info af_info_lavrresample;
extern const struct af_info af_info_scaletempo;
@@ -50,7 +49,6 @@ static const struct af_info *const filter_list[] = {
&af_info_volume,
&af_info_equalizer,
&af_info_pan,
- &af_info_drc,
&af_info_lavcac3enc,
&af_info_lavrresample,
#if HAVE_RUBBERBAND