From 716e795823508813d77e9a688eedb7a7e03d50d1 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Thu, 27 Oct 2005 14:58:56 +0000 Subject: 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 --- src/libreal/xine_decoder.c | 6 +++--- 1 file 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, -- cgit v1.2.3