diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-12 22:00:47 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-12 22:00:47 +0000 |
commit | 16b6f9646902e6940a991f1d3577c068573015a8 (patch) | |
tree | 05401271b5a9a81668a00ddb079d3db259e4bcee /src/libreal/audio_decoder.c | |
parent | ec4c867b1a59029166c5efc025966f7886f15c61 (diff) | |
download | xine-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/libreal/audio_decoder.c')
-rw-r--r-- | src/libreal/audio_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libreal/audio_decoder.c b/src/libreal/audio_decoder.c index f22eea71e..8276f8bcd 100644 --- a/src/libreal/audio_decoder.c +++ b/src/libreal/audio_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: audio_decoder.c,v 1.41 2004/12/08 17:10:29 miguelfreitas Exp $ + * $Id: audio_decoder.c,v 1.42 2004/12/12 22:01:09 mroi Exp $ * * thin layer to use real binary-only codecs in xine * @@ -167,7 +167,7 @@ static inline int is_x86_64_object(const char *filename) static int load_syms_linux (realdec_decoder_t *this, char *codec_name) { cfg_entry_t* entry = this->stream->xine->config->lookup_entry( - this->stream->xine->config, "codec.real_codecs_path"); + this->stream->xine->config, "decoder.external.real_codecs_path"); char path[1024]; snprintf (path, sizeof(path), "%s/%s", entry->str_value, codec_name); @@ -726,7 +726,7 @@ static void *init_class (xine_t *xine, void *data) { if (!stat ("/usr/lib/win32/drv3.so.6.0", &s)) default_real_codec_path = "/usr/lib/win32"; - real_codec_path = config->register_string (config, "codec.real_codecs_path", + real_codec_path = config->register_string (config, "decoder.external.real_codecs_path", default_real_codec_path, _("path to RealPlayer codecs"), _("If you have RealPlayer installed, specify the path " |