diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2005-10-27 14:58:56 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2005-10-27 14:58:56 +0000 |
commit | 716e795823508813d77e9a688eedb7a7e03d50d1 (patch) | |
tree | 04a957aa62469e2bdd5ec8d4480b0b1b0f25212c | |
parent | c16c64676620e056987c02ae29469f8133762e15 (diff) | |
download | xine-lib-716e795823508813d77e9a688eedb7a7e03d50d1.tar.gz xine-lib-716e795823508813d77e9a688eedb7a7e03d50d1.tar.bz2 |
reorder paths so that codecs is searched before win32
thanks to Diego Biurrun for his patience and awareness
CVS patchset: 7772
CVS date: 2005/10/27 14:58:56
-rw-r--r-- | src/libreal/xine_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libreal/xine_decoder.c b/src/libreal/xine_decoder.c index f147fdeb5..142dd3796 100644 --- a/src/libreal/xine_decoder.c +++ b/src/libreal/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.78 2005/10/23 02:38:40 miguelfreitas Exp $ + * $Id: xine_decoder.c,v 1.79 2005/10/27 14:58:56 mroi Exp $ * * thin layer to use real binary-only codecs in xine * @@ -603,10 +603,10 @@ static void *init_class (xine_t *xine, void *data) { default_real_codec_path = "/usr/lib64/RealPlayer8/Codecs"; if (!stat ("/usr/lib64/RealPlayer9/users/Real/Codecs/drv3.so.6.0", &s)) default_real_codec_path = "/usr/lib64/RealPlayer9/users/Real/Codecs"; - if (!stat ("/usr/lib/win32/drv3.so.6.0", &s)) - default_real_codec_path = "/usr/lib/win32"; if (!stat ("/usr/lib/codecs/drv3.so.6.0", &s)) default_real_codec_path = "/usr/lib/codecs"; + if (!stat ("/usr/lib/win32/drv3.so.6.0", &s)) + default_real_codec_path = "/usr/lib/win32"; real_codec_path = config->register_string (config, "decoder.external.real_codecs_path", default_real_codec_path, |