From 5c20c1161c36cc97478c5527576961013e5dc8e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Fri, 16 Mar 2007 22:26:54 +0000 Subject: Don't check only for drv3.so.6.0, as that is not present for x86-64 or PowerPC Real codecs. CVS patchset: 8685 CVS date: 2007/03/16 22:26:54 --- src/libreal/real_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/libreal/real_common.c b/src/libreal/real_common.c index 01d644cb8..08d7aec7e 100644 --- a/src/libreal/real_common.c +++ b/src/libreal/real_common.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: real_common.c,v 1.5 2007/03/16 22:14:57 dgp85 Exp $ + * $Id: real_common.c,v 1.6 2007/03/16 22:26:54 dgp85 Exp $ * * Common function for the thin layer to use Real binary-only codecs in xine */ @@ -76,7 +76,7 @@ void _x_real_codecs_init(xine_t *const xine) { struct stat s; #define try_real_path(path) \ - if (!stat (path "/dvr3.so.6.0", &s)) \ + if ( !stat (path "/dvr3.so.6.0", &s) || !stat (path "/dvrc.so", &s) ) \ default_real_codecs_path = path; #define try_real_subpath(path) \ try_real_path("/usr/" path) \ -- cgit v1.2.3