diff options
author | Anssi Hannula <anssi.hannula@iki.fi> | 2010-04-29 02:22:25 +0300 |
---|---|---|
committer | Anssi Hannula <anssi.hannula@iki.fi> | 2010-04-29 02:22:25 +0300 |
commit | 0c0dacd8b10892c2ed3b7aa6f3be617d3cec4911 (patch) | |
tree | be5ed1a0e97506bb5a5d00c7735d3e6fd2fc3906 | |
parent | c8699f1bcc7854036071a06e923333d30dd07ed1 (diff) | |
download | xine-lib-0c0dacd8b10892c2ed3b7aa6f3be617d3cec4911.tar.gz xine-lib-0c0dacd8b10892c2ed3b7aa6f3be617d3cec4911.tar.bz2 |
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.
-rw-r--r-- | src/libreal/real_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
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" }, |