diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-11-20 01:43:30 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-11-20 01:43:30 +0000 |
commit | 9d7e15d4cd2b7c633cb99acf6b321d754dbd64e0 (patch) | |
tree | 2048dd92e9e4da0bf2224d502da72c0402be7d32 | |
parent | 7c6030a3c96dbb6e62d75f9d3b8b2d7484741bc3 (diff) | |
download | xine-lib-9d7e15d4cd2b7c633cb99acf6b321d754dbd64e0.tar.gz xine-lib-9d7e15d4cd2b7c633cb99acf6b321d754dbd64e0.tar.bz2 |
move options to codec section
CVS patchset: 1083
CVS date: 2001/11/20 01:43:30
-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); |