Changeset 2ed5acfdde9ac4517a10c7ad0666014be685c970

Show
Ignore:
Timestamp:
11/11/07 07:08:59 (1 year ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1194761339 +0000
git-parent:

[e5147c68f462673172739e1be7b95088187d13f7]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1194761339 +0000
Message:

Real Audio: Add support for RealPlayer? 10/10GOLD .so

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/codec/realaudio.c

    re5147c6 r2ed5acf  
    277277      "/usr/lib/win32", 
    278278      "/usr/lib/codecs", 
    279       "/usr/local/lib/codecs" 
     279      "/usr/local/lib/codecs", 
    280280#endif 
    281281      NULL, 
     
    291291    for( i = 0; ppsz_path[i]; i++ ) 
    292292    { 
     293        /* Old format */ 
    293294        asprintf( &psz_dll, "%s/%4.4s.so.6.0", ppsz_path[i], 
    294295                  (char *)&p_dec->fmt_in.i_codec ); 
     
    296297        free( psz_dll ); 
    297298        if( i_result == VLC_SUCCESS ) return VLC_SUCCESS; 
     299 
     300        /* New format */ 
     301        asprintf( &psz_dll, "%s/%4.4s.so", ppsz_path[i], 
     302                  (char *)&p_dec->fmt_in.i_codec ); 
     303        i_result = OpenNativeDll( p_dec, ppsz_path[i], psz_dll ); 
     304        free( psz_dll ); 
     305        if( i_result == VLC_SUCCESS ) return VLC_SUCCESS; 
     306 
    298307    } 
    299308