diff options
author | Johns <johns98@gmx.net> | 2012-04-19 16:01:20 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-04-19 16:01:20 +0200 |
commit | 44ca71fedb800ddef183feccdb9c1a69492aa89e (patch) | |
tree | 6d53d43f8a8505b1d1969b3ae7b8338f8e4d76bd /softhddevice.cpp | |
parent | 8039e8ae041e0a53db31fc01365ebd3c3cd5d4e6 (diff) | |
download | vdr-plugin-softhddevice-44ca71fedb800ddef183feccdb9c1a69492aa89e.tar.gz vdr-plugin-softhddevice-44ca71fedb800ddef183feccdb9c1a69492aa89e.tar.bz2 |
Adds audio normalize support.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r-- | softhddevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp index bddc267..21a4996 100644 --- a/softhddevice.cpp +++ b/softhddevice.cpp @@ -690,9 +690,9 @@ void cMenuSetupSoft::Create(void) Add(new cMenuEditBoolItem(tr("Volume control"), &AudioSoftvol, tr("Hardware"), tr("Software"))); Add(new cMenuEditBoolItem(tr("Enable normalize volume"), - &AudioMaxNormalize, trVDR("no"), trVDR("yes"))); + &AudioNormalize, trVDR("no"), trVDR("yes"))); Add(new cMenuEditIntItem(tr(" Max normalize factor (/1000)"), - &AudioMaxNormalize, 0, 5000)); + &AudioMaxNormalize, 0, 10000)); Add(new cMenuEditBoolItem(tr("Enable volume compression"), &AudioCompression, trVDR("no"), trVDR("yes"))); Add(new cMenuEditIntItem(tr(" Max compression factor (/1000)"), |