diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 22:26:54 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 22:26:54 +0000 |
commit | 5c20c1161c36cc97478c5527576961013e5dc8e4 (patch) | |
tree | f60fa3f419226e35cdb744e2f4a09f8d04ed91fc | |
parent | 675677d25d11feb67ae5697395abf9deaf9469ad (diff) | |
download | xine-lib-5c20c1161c36cc97478c5527576961013e5dc8e4.tar.gz xine-lib-5c20c1161c36cc97478c5527576961013e5dc8e4.tar.bz2 |
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
-rw-r--r-- | src/libreal/real_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) \ |