summaryrefslogtreecommitdiffstats
path: root/audio/filter/af.c
diff options
context:
space:
mode:
authorMartin <lachs0r@srsfckn.biz>2013-02-12 09:53:33 +0100
committerMartin <lachs0r@srsfckn.biz>2013-02-12 09:53:33 +0100
commit1f7decc1a0a7e0f2fb547ee740ee0d7b659c0406 (patch)
tree20597fbc35a49a164d6a981bdb7a4745ad199412 /audio/filter/af.c
parentf7636474eb661587c74486fcc3f1038f4e26b68b (diff)
downloadmpv-1f7decc1a0a7e0f2fb547ee740ee0d7b659c0406.tar.bz2
mpv-1f7decc1a0a7e0f2fb547ee740ee0d7b659c0406.tar.xz
Rename af_volnorm to af_drc
The previous name of this filter was misleading, because it doesn’t actually normalize volume levels. What it does is closer to performing low-quality dynamic range compression, hence it is now called af_drc.
Diffstat (limited to 'audio/filter/af.c')
-rw-r--r--audio/filter/af.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/filter/af.c b/audio/filter/af.c
index 8afedbcfe5..71f4c67b51 100644
--- a/audio/filter/af.c
+++ b/audio/filter/af.c
@@ -35,7 +35,7 @@ extern struct af_info af_info_pan;
extern struct af_info af_info_surround;
extern struct af_info af_info_sub;
extern struct af_info af_info_export;
-extern struct af_info af_info_volnorm;
+extern struct af_info af_info_drc;
extern struct af_info af_info_extrastereo;
extern struct af_info af_info_lavcac3enc;
extern struct af_info af_info_lavcresample;
@@ -62,7 +62,7 @@ static struct af_info* filter_list[]={
#ifdef HAVE_SYS_MMAN_H
&af_info_export,
#endif
- &af_info_volnorm,
+ &af_info_drc,
&af_info_extrastereo,
&af_info_lavcac3enc,
&af_info_lavcresample,