Changeset 2ed5acfdde9ac4517a10c7ad0666014be685c970
- 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
| re5147c6 |
r2ed5acf |
|
| 277 | 277 | "/usr/lib/win32", |
|---|
| 278 | 278 | "/usr/lib/codecs", |
|---|
| 279 | | "/usr/local/lib/codecs" |
|---|
| | 279 | "/usr/local/lib/codecs", |
|---|
| 280 | 280 | #endif |
|---|
| 281 | 281 | NULL, |
|---|
| … | … | |
| 291 | 291 | for( i = 0; ppsz_path[i]; i++ ) |
|---|
| 292 | 292 | { |
|---|
| | 293 | /* Old format */ |
|---|
| 293 | 294 | asprintf( &psz_dll, "%s/%4.4s.so.6.0", ppsz_path[i], |
|---|
| 294 | 295 | (char *)&p_dec->fmt_in.i_codec ); |
|---|
| … | … | |
| 296 | 297 | free( psz_dll ); |
|---|
| 297 | 298 | 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 | |
|---|
| 298 | 307 | } |
|---|
| 299 | 308 | |
|---|