diff options
-rw-r--r-- | src/liba52/xine_decoder.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/liba52/xine_decoder.c b/src/liba52/xine_decoder.c index 366438660..1c8da9e74 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.11 2001/11/18 03:53:24 guenter Exp $ + * $Id: xine_decoder.c,v 1.12 2001/11/20 01:43:30 guenter Exp $ * * stuff needed to turn liba52 into a xine decoder plugin */ @@ -495,14 +495,14 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, config_values_t * this->audio_decoder.priority = 2; - this->a52_level = (float) cfg->register_range (cfg, "audio.a52_level", 100, + this->a52_level = (float) cfg->register_range (cfg, "codec.a52_level", 100, 0, 200, "a/52 volume control", NULL, NULL, NULL) / 100.0; - this->disable_dynrng = !cfg->register_bool (cfg, "audio.a52_dynrng", 0, + this->disable_dynrng = !cfg->register_bool (cfg, "codec.a52_dynrng", 0, "enable a/52 dynamic range compensation", NULL, NULL, NULL); - this->enable_surround_downmix = cfg->register_bool (cfg, "audio.a52_surround_downmix", 0, + this->enable_surround_downmix = cfg->register_bool (cfg, "codec.a52_surround_downmix", 0, "enable audio downmixing to 2.0 surround stereo", NULL, NULL, NULL); |