summaryrefslogtreecommitdiff
path: root/src/liba52/xine_decoder.c
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-12-12 22:00:47 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-12-12 22:00:47 +0000
commit16b6f9646902e6940a991f1d3577c068573015a8 (patch)
tree05401271b5a9a81668a00ddb079d3db259e4bcee /src/liba52/xine_decoder.c
parentec4c867b1a59029166c5efc025966f7886f15c61 (diff)
downloadxine-lib-16b6f9646902e6940a991f1d3577c068573015a8.tar.gz
xine-lib-16b6f9646902e6940a991f1d3577c068573015a8.tar.bz2
huge patch ahead: reorganizing config entries with automatic conversion
and backwards compatible translation Sorry, I got a litte tired proof-reading the patch, so their might be bugs lurking around. I will give it some further examination and (as necessary) fixing tomorrow. CVS patchset: 7233 CVS date: 2004/12/12 22:00:47
Diffstat (limited to 'src/liba52/xine_decoder.c')
-rw-r--r--src/liba52/xine_decoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/liba52/xine_decoder.c b/src/liba52/xine_decoder.c
index a8ec8edd0..53ad05f83 100644
--- a/src/liba52/xine_decoder.c
+++ b/src/liba52/xine_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.71 2004/11/03 19:30:04 mroi Exp $
+ * $Id: xine_decoder.c,v 1.72 2004/12/12 22:01:08 mroi Exp $
*
* stuff needed to turn liba52 into a xine decoder plugin
*/
@@ -775,7 +775,7 @@ static void *init_plugin (xine_t *xine, void *data) {
cfg = this->config = xine->config;
- this->a52_level = (float) cfg->register_range (cfg, "codec.a52_level", 100,
+ this->a52_level = (float) cfg->register_range (cfg, "audio.a52.level", 100,
0, 200,
_("A/52 volume"),
_("With A/52 audio, you can modify the volume "
@@ -785,7 +785,7 @@ static void *init_plugin (xine_t *xine, void *data) {
"channel downmixing will work on an audio stream "
"of the given volume."),
10, a52_level_change_cb, this) / 100.0;
- this->disable_dynrng_compress = !cfg->register_bool (cfg, "codec.a52_dynrng", 0,
+ this->disable_dynrng_compress = !cfg->register_bool (cfg, "audio.a52.dynamic_range", 0,
_("use A/52 dynamic range compression"),
_("Dynamic range compression limits the dynamic "
"range of the audio. This means making the loud "
@@ -793,7 +793,7 @@ static void *init_plugin (xine_t *xine, void *data) {
"more easily listen to the audio in a noisy "
"environment without disturbing anyone."),
0, dynrng_compress_change_cb, this);
- this->enable_surround_downmix = cfg->register_bool (cfg, "codec.a52_surround_downmix", 0,
+ this->enable_surround_downmix = cfg->register_bool (cfg, "audio.a52.surround_downmix", 0,
_("downmix audio to 2 channel surround stereo"),
_("When you want to listen to multichannel surround "
"sound, but you have only two speakers or a "