From 0c0dacd8b10892c2ed3b7aa6f3be617d3cec4911 Mon Sep 17 00:00:00 2001 From: Anssi Hannula Date: Thu, 29 Apr 2010 02:22:25 +0300 Subject: add /usr/lib64/codecs as real binary codec location Mplayer now only supports single location for all binary codecs, and therefore on Mandriva packaging /usr/lib(64)/codecs was selected as the directory where mplayer will try to load them from. The 64-bit variant is missing from xine-lib (/usr/lib/codecs is there). Attached patch adds it. --- src/libreal/real_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/libreal/real_common.c b/src/libreal/real_common.c index 6eedb009a..10e4b61b9 100644 --- a/src/libreal/real_common.c +++ b/src/libreal/real_common.c @@ -94,7 +94,7 @@ void _x_real_codecs_init(xine_t *const xine) { const char *path; } paths[] = { { O | UL, "win32" }, - { O | UL, "codecs" }, + { O | UL | UL64, "codecs" }, { O | UL | UL64, "real" }, { O, "real/RealPlayer/codecs" }, { OL | OL64 | UL | UL64, "RealPlayer10GOLD/codecs" }, -- cgit v1.2.3