]> git.sesse.net Git - vlc/blob - modules/codec/realaudio.c
Real Audio: Add support for RealPlayer 10/10GOLD .so
[vlc] / modules / codec / realaudio.c
1 /*****************************************************************************
2  * realaudio.c: a realaudio decoder that uses the realaudio library/dll
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20  *****************************************************************************/
21
22 /*****************************************************************************
23  * Preamble
24  *****************************************************************************/
25 #include <vlc/vlc.h>
26 #include <vlc_aout.h>
27 #include <vlc_codec.h>
28
29 #ifdef LOADER
30 /* Need the w32dll loader from mplayer */
31 #   include <wine/winerror.h>
32 #   include <ldt_keeper.h>
33 #   include <wine/windef.h>
34
35 void *WINAPI LoadLibraryA( char *name );
36 void *WINAPI GetProcAddress( void *handle, char *func );
37 int WINAPI FreeLibrary( void *handle );
38 #endif
39
40 #ifndef WINAPI
41 #   define WINAPI
42 #endif
43
44 #if defined(HAVE_DL_DLOPEN)
45 #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
46 #       include <dlfcn.h>
47 #   endif
48 #   if defined(HAVE_SYS_DL_H)
49 #       include <sys/dl.h>
50 #   endif
51 #endif
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56 static int  Open ( vlc_object_t * );
57 static void Close( vlc_object_t * );
58
59 vlc_module_begin();
60     set_description( _("RealAudio library decoder") );
61     set_capability( "decoder", 10 );
62     set_category( CAT_INPUT );
63     set_subcategory( SUBCAT_INPUT_VCODEC );
64     set_callbacks( Open, Close );
65 vlc_module_end();
66
67 /*****************************************************************************
68  * Local prototypes
69  *****************************************************************************/
70 static int  OpenDll( decoder_t * );
71 static int  OpenNativeDll( decoder_t *, char *, char * );
72 static int  OpenWin32Dll( decoder_t *, char *, char * );
73 static void CloseDll( decoder_t * );
74
75 static aout_buffer_t *Decode( decoder_t *, block_t ** );
76
77 struct decoder_sys_t
78 {
79     audio_date_t end_date;
80
81     /* Output buffer */
82     char *p_out;
83     unsigned int i_out;
84
85     /* Codec params */
86     void *context;
87     int i_codec_flavor;
88
89     void *dll;
90     unsigned long (*raCloseCodec)(void*);
91     unsigned long (*raDecode)(void*, char*, unsigned long, char*,
92                               unsigned int*, long);
93     unsigned long (*raFlush)(unsigned long, unsigned long, unsigned long);
94     unsigned long (*raFreeDecoder)(void*);
95     void*         (*raGetFlavorProperty)(void*, unsigned long,
96                                          unsigned long, int*);
97     unsigned long (*raInitDecoder)(void*, void*);
98     unsigned long (*raOpenCodec)(void*);
99     unsigned long (*raOpenCodec2)(void*, void*);
100     unsigned long (*raSetFlavor)(void*, unsigned long);
101     void          (*raSetDLLAccessPath)(char*);
102     void          (*raSetPwd)(char*, char*);
103
104 #if defined(LOADER)
105     ldt_fs_t *ldt_fs;
106 #endif
107
108     void *win32_dll;
109     unsigned long (WINAPI *wraCloseCodec)(void*);
110     unsigned long (WINAPI *wraDecode)(void*, char*, unsigned long, char*,
111                                       unsigned int*, long);
112     unsigned long (WINAPI *wraFlush)(unsigned long, unsigned long,
113                                      unsigned long);
114     unsigned long (WINAPI *wraFreeDecoder)(void*);
115     void*         (WINAPI *wraGetFlavorProperty)(void*, unsigned long,
116                                                  unsigned long, int*);
117     unsigned long (WINAPI *wraInitDecoder)(void*, void*);
118     unsigned long (WINAPI *wraOpenCodec)(void*);
119     unsigned long (WINAPI *wraOpenCodec2)(void*, void*);
120     unsigned long (WINAPI *wraSetFlavor)(void*, unsigned long);
121     void          (WINAPI *wraSetDLLAccessPath)(char*);
122     void          (WINAPI *wraSetPwd)(char*, char*);
123 };
124
125 /* linux dlls doesn't need packing */
126 typedef struct /*__attribute__((__packed__))*/ {
127     int samplerate;
128     short bits;
129     short channels;
130     short quality;
131     /* 2bytes padding here, by gcc */
132     int bits_per_frame;
133     int packetsize;
134     int extradata_len;
135     void* extradata;
136 } ra_init_t;
137
138 /* windows dlls need packed structs (no padding) */
139 typedef struct __attribute__((__packed__)) {
140     int samplerate;
141     short bits;
142     short channels;
143     short quality;
144     int bits_per_frame;
145     int packetsize;
146     int extradata_len;
147     void* extradata;
148 } wra_init_t;
149
150 void *__builtin_new(unsigned long size) {return malloc(size);}
151 void __builtin_delete(void *p) {free(p);}
152
153 static int pi_channels_maps[7] =
154 {
155     0,
156     AOUT_CHAN_CENTER,
157     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
158     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
159     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
160      | AOUT_CHAN_REARRIGHT,
161     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
162      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT,
163     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
164      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE
165 };
166
167 /*****************************************************************************
168  * Open: probe the decoder and return score
169  *****************************************************************************
170  * Tries to launch a decoder and return score so that the interface is able
171  * to choose.
172  *****************************************************************************/
173 static int Open( vlc_object_t *p_this )
174 {
175     decoder_t *p_dec = (decoder_t*)p_this;
176     decoder_sys_t *p_sys = p_dec->p_sys;
177
178     switch( p_dec->fmt_in.i_codec )
179     {
180     case VLC_FOURCC('c','o','o','k'):
181         break;
182
183     default:
184         return VLC_EGENERIC;
185     }
186
187     if( p_dec->fmt_in.audio.i_channels <= 0 ||
188         p_dec->fmt_in.audio.i_channels > 6 )
189     {
190         msg_Err( p_dec, "invalid number of channels (not between 1 and 6): %i",
191                  p_dec->fmt_in.audio.i_channels );
192         return VLC_EGENERIC;
193     }
194
195     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
196     memset( p_sys, 0, sizeof(decoder_sys_t) );
197
198     p_sys->i_codec_flavor = -1;
199     if( p_dec->fmt_in.i_codec == VLC_FOURCC('s','i','p','r') )
200     {
201         if( p_dec->fmt_in.audio.i_bitspersample > 1531 )
202             p_sys->i_codec_flavor = 3;
203         else if( p_dec->fmt_in.audio.i_bitspersample > 937 )
204             p_sys->i_codec_flavor = 1;
205         else if( p_dec->fmt_in.audio.i_bitspersample > 719 )
206             p_sys->i_codec_flavor = 0;
207         else
208             p_sys->i_codec_flavor = 2;
209     }
210
211     if( OpenDll( p_dec ) != VLC_SUCCESS )
212     {
213         free( p_sys );
214         return VLC_EGENERIC;
215     }
216
217 #ifdef LOADER
218     if( p_sys->win32_dll ) Close( p_this );
219 #endif
220
221     es_format_Init( &p_dec->fmt_out, AUDIO_ES, AOUT_FMT_S16_NE );
222     p_dec->fmt_out.audio.i_rate = p_dec->fmt_in.audio.i_rate;
223     p_dec->fmt_out.audio.i_channels = p_dec->fmt_in.audio.i_channels;
224     p_dec->fmt_out.audio.i_bitspersample =
225         p_dec->fmt_in.audio.i_bitspersample;
226     p_dec->fmt_out.audio.i_physical_channels =
227     p_dec->fmt_out.audio.i_original_channels =
228         pi_channels_maps[p_dec->fmt_out.audio.i_channels];
229
230     aout_DateInit( &p_sys->end_date, p_dec->fmt_out.audio.i_rate );
231     aout_DateSet( &p_sys->end_date, 0 );
232
233     p_dec->pf_decode_audio = Decode;
234
235     p_sys->p_out = malloc( 4096 * 10 );
236     p_sys->i_out = 0;
237
238     return VLC_SUCCESS;
239 }
240
241 /*****************************************************************************
242  * Close:
243  *****************************************************************************/
244 static void Close( vlc_object_t *p_this )
245 {
246     decoder_t *p_dec = (decoder_t*)p_this;
247
248     CloseDll( p_dec );
249     if( p_dec->p_sys->p_out ) free( p_dec->p_sys->p_out );
250     free( p_dec->p_sys );
251 }
252
253 /*****************************************************************************
254  * OpenDll:
255  *****************************************************************************/
256 static int OpenDll( decoder_t *p_dec )
257 {
258     char *psz_dll;
259     int i, i_result;
260
261     char *ppsz_path[] =
262     {
263       ".",
264 #ifndef WIN32
265       "/usr/local/RealPlayer8/Codecs",
266       "/usr/RealPlayer8/Codecs",
267       "/usr/lib/RealPlayer8/Codecs",
268       "/opt/RealPlayer8/Codecs",
269       "/usr/lib/RealPlayer9/users/Real/Codecs",
270       "/usr/lib/RealPlayer10/codecs",
271       "/usr/lib/RealPlayer10GOLD/codecs",
272       "/usr/lib/helix/player/codecs",
273       "/usr/lib64/RealPlayer8/Codecs",
274       "/usr/lib64/RealPlayer9/users/Real/Codecs",
275       "/usr/lib64/RealPlayer10/codecs",
276       "/usr/lib64/RealPlayer10GOLD/codecs",
277       "/usr/lib/win32",
278       "/usr/lib/codecs",
279       "/usr/local/lib/codecs",
280 #endif
281       NULL,
282       NULL,
283       NULL
284     };
285
286 #ifdef WIN32
287     char psz_win32_real_codecs[MAX_PATH + 1];
288     char psz_win32_helix_codecs[MAX_PATH + 1];
289 #endif
290
291     for( i = 0; ppsz_path[i]; i++ )
292     {
293         /* Old format */
294         asprintf( &psz_dll, "%s/%4.4s.so.6.0", ppsz_path[i],
295                   (char *)&p_dec->fmt_in.i_codec );
296         i_result = OpenNativeDll( p_dec, ppsz_path[i], psz_dll );
297         free( psz_dll );
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
307     }
308
309 #ifdef WIN32
310     {
311         HKEY h_key;
312         DWORD i_type, i_data = MAX_PATH + 1, i_index = 1;
313         char *p_data;
314
315         p_data = psz_win32_real_codecs;
316         if( RegOpenKeyEx( HKEY_CLASSES_ROOT,
317                           _T("Software\\RealNetworks\\Preferences\\DT_Codecs"),
318                           0, KEY_READ, &h_key ) == ERROR_SUCCESS )
319         {
320              if( RegQueryValueEx( h_key, _T(""), 0, &i_type,
321                                   (LPBYTE)p_data, &i_data ) == ERROR_SUCCESS &&
322                  i_type == REG_SZ )
323              {
324                  int i_len = strlen( p_data );
325                  if( i_len && p_data[i_len-1] == '\\' ) p_data[i_len-1] = 0;
326                  ppsz_path[i_index++] = p_data;
327                  msg_Err( p_dec, "Real: %s", p_data );
328              }
329              RegCloseKey( h_key );
330         }
331
332         p_data = psz_win32_helix_codecs;
333         if( RegOpenKeyEx( HKEY_CLASSES_ROOT,
334                           _T("Helix\\HelixSDK\\10.0\\Preferences\\DT_Codecs"),
335                           0, KEY_READ, &h_key ) == ERROR_SUCCESS )
336         {
337              if( RegQueryValueEx( h_key, _T(""), 0, &i_type,
338                                   (LPBYTE)p_data, &i_data ) == ERROR_SUCCESS &&
339                  i_type == REG_SZ )
340              {
341                  int i_len = strlen( p_data );
342                  if( i_len && p_data[i_len-1] == '\\' ) p_data[i_len-1] = 0;
343                  ppsz_path[i_index++] = p_data;
344                  msg_Err( p_dec, "Real: %s", p_data );
345              }
346              RegCloseKey( h_key );
347         }
348     }
349 #endif
350
351     for( i = 0; ppsz_path[i]; i++ )
352     {
353         /* New format */
354         asprintf( &psz_dll, "%s\\%4.4s.dll", ppsz_path[i],
355                   (char *)&p_dec->fmt_in.i_codec );
356         i_result = OpenWin32Dll( p_dec, ppsz_path[i], psz_dll );
357         free( psz_dll );
358         if( i_result == VLC_SUCCESS ) return VLC_SUCCESS;
359
360         /* Old format */
361         asprintf( &psz_dll, "%s\\%4.4s3260.dll", ppsz_path[i],
362                   (char *)&p_dec->fmt_in.i_codec );
363         i_result = OpenWin32Dll( p_dec, ppsz_path[i], psz_dll );
364         free( psz_dll );
365         if( i_result == VLC_SUCCESS ) return VLC_SUCCESS;
366     }
367
368     return VLC_EGENERIC;
369 }
370
371 static int OpenNativeDll( decoder_t *p_dec, char *psz_path, char *psz_dll )
372 {
373 #if defined(HAVE_DL_DLOPEN)
374     decoder_sys_t *p_sys = p_dec->p_sys;
375     void *handle = 0, *context = 0;
376     unsigned int i_result;
377     void *p_prop;
378     int i_prop;
379
380     ra_init_t init_data =
381     {
382         p_dec->fmt_in.audio.i_rate,
383         p_dec->fmt_in.audio.i_bitspersample,
384         p_dec->fmt_in.audio.i_channels,
385         100, /* quality */
386         p_dec->fmt_in.audio.i_blockalign, /* subpacket size */
387         p_dec->fmt_in.audio.i_blockalign, /* coded frame size */
388         p_dec->fmt_in.i_extra, p_dec->fmt_in.p_extra
389     };
390
391     msg_Dbg( p_dec, "opening library '%s'", psz_dll );
392     if( !(handle = dlopen( psz_dll, RTLD_LAZY )) )
393     {
394         msg_Dbg( p_dec, "couldn't load library '%s' (%s)",
395                  psz_dll, dlerror() );
396         return VLC_EGENERIC;
397     }
398
399     p_sys->raCloseCodec = dlsym( handle, "RACloseCodec" );
400     p_sys->raDecode = dlsym( handle, "RADecode" );
401     p_sys->raFlush = dlsym( handle, "RAFlush" );
402     p_sys->raFreeDecoder = dlsym( handle, "RAFreeDecoder" );
403     p_sys->raGetFlavorProperty = dlsym( handle, "RAGetFlavorProperty" );
404     p_sys->raOpenCodec = dlsym( handle, "RAOpenCodec" );
405     p_sys->raOpenCodec2 = dlsym( handle, "RAOpenCodec2" );
406     p_sys->raInitDecoder = dlsym( handle, "RAInitDecoder" );
407     p_sys->raSetFlavor = dlsym( handle, "RASetFlavor" );
408     p_sys->raSetDLLAccessPath = dlsym( handle, "SetDLLAccessPath" );
409     p_sys->raSetPwd = dlsym( handle, "RASetPwd" ); // optional, used by SIPR
410
411     if( !(p_sys->raOpenCodec || p_sys->raOpenCodec2) ||
412         !p_sys->raCloseCodec || !p_sys->raInitDecoder ||
413         !p_sys->raDecode || !p_sys->raFreeDecoder ||
414         !p_sys->raGetFlavorProperty || !p_sys->raSetFlavor
415         /* || !p_sys->raFlush || !p_sys->raSetDLLAccessPath */ )
416     {
417         goto error_native;
418     }
419
420     if( p_sys->raOpenCodec2 )
421         i_result = p_sys->raOpenCodec2( &context, psz_path );
422     else
423         i_result = p_sys->raOpenCodec( &context );
424
425     if( i_result )
426     {
427         msg_Err( p_dec, "decoder open failed, error code: 0x%x", i_result );
428         goto error_native;
429     }
430
431     i_result = p_sys->raInitDecoder( context, &init_data );
432     if( i_result )
433     {
434         msg_Err( p_dec, "decoder init failed, error code: 0x%x", i_result );
435         goto error_native;
436     }
437
438     if( p_sys->i_codec_flavor >= 0 )
439     {
440         i_result = p_sys->raSetFlavor( context, p_sys->i_codec_flavor );
441         if( i_result )
442         {
443             msg_Err( p_dec, "decoder flavor setup failed, error code: 0x%x",
444                      i_result );
445             goto error_native;
446         }
447
448         p_prop = p_sys->raGetFlavorProperty( context, p_sys->i_codec_flavor,
449                                              0, &i_prop );
450         msg_Dbg( p_dec, "audio codec: [%d] %s",
451                  p_sys->i_codec_flavor, (char *)p_prop );
452
453         p_prop = p_sys->raGetFlavorProperty( context, p_sys->i_codec_flavor,
454                                              1, &i_prop );
455         if( p_prop )
456         {
457             int i_bps = ((*((int*)p_prop))+4)/8;
458             msg_Dbg( p_dec, "audio bitrate: %5.3f kbit/s (%d bps)",
459                      (*((int*)p_prop))*0.001f, i_bps );
460         }
461     }
462
463     p_sys->context = context;
464     p_sys->dll = handle;
465     return VLC_SUCCESS;
466
467  error_native:
468     if( context ) p_sys->raFreeDecoder( context );
469     if( context ) p_sys->raCloseCodec( context );
470     dlclose( handle );
471 #endif
472
473     return VLC_EGENERIC;
474 }
475
476 static int OpenWin32Dll( decoder_t *p_dec, char *psz_path, char *psz_dll )
477 {
478 #if defined(LOADER) || defined(WIN32)
479     decoder_sys_t *p_sys = p_dec->p_sys;
480     void *handle = 0, *context = 0;
481     unsigned int i_result;
482     void *p_prop;
483     int i_prop;
484
485     wra_init_t init_data =
486     {
487         p_dec->fmt_in.audio.i_rate,
488         p_dec->fmt_in.audio.i_bitspersample,
489         p_dec->fmt_in.audio.i_channels,
490         100, /* quality */
491         p_dec->fmt_in.audio.i_blockalign, /* subpacket size */
492         p_dec->fmt_in.audio.i_blockalign, /* coded frame size */
493         p_dec->fmt_in.i_extra, p_dec->fmt_in.p_extra
494     };
495
496     msg_Dbg( p_dec, "opening win32 dll '%s'", psz_dll );
497
498 #ifdef LOADER
499     Setup_LDT_Keeper();
500 #endif
501
502     if( !(handle = LoadLibraryA( psz_dll )) )
503     {
504         msg_Dbg( p_dec, "couldn't load dll '%s'", psz_dll );
505         return VLC_EGENERIC;
506     }
507
508     p_sys->wraCloseCodec = GetProcAddress( handle, "RACloseCodec" );
509     p_sys->wraDecode = GetProcAddress( handle, "RADecode" );
510     p_sys->wraFlush = GetProcAddress( handle, "RAFlush" );
511     p_sys->wraFreeDecoder = GetProcAddress( handle, "RAFreeDecoder" );
512     p_sys->wraGetFlavorProperty =
513         GetProcAddress( handle, "RAGetFlavorProperty" );
514     p_sys->wraOpenCodec = GetProcAddress( handle, "RAOpenCodec" );
515     p_sys->wraOpenCodec2 = GetProcAddress( handle, "RAOpenCodec2" );
516     p_sys->wraInitDecoder = GetProcAddress( handle, "RAInitDecoder" );
517     p_sys->wraSetFlavor = GetProcAddress( handle, "RASetFlavor" );
518     p_sys->wraSetDLLAccessPath = GetProcAddress( handle, "SetDLLAccessPath" );
519     p_sys->wraSetPwd =
520         GetProcAddress( handle, "RASetPwd" ); // optional, used by SIPR
521
522     if( !(p_sys->wraOpenCodec || p_sys->wraOpenCodec2) ||
523         !p_sys->wraCloseCodec || !p_sys->wraInitDecoder ||
524         !p_sys->wraDecode || !p_sys->wraFreeDecoder ||
525         !p_sys->wraGetFlavorProperty || !p_sys->wraSetFlavor
526         /* || !p_sys->wraFlush || !p_sys->wraSetDLLAccessPath */ )
527     {
528         FreeLibrary( handle );
529         return VLC_EGENERIC;
530     }
531
532     if( p_sys->wraOpenCodec2 )
533         i_result = p_sys->wraOpenCodec2( &context, psz_path );
534     else
535         i_result = p_sys->wraOpenCodec( &context );
536
537     if( i_result )
538     {
539         msg_Err( p_dec, "decoder open failed, error code: 0x%x", i_result );
540         goto error_win32;
541     }
542
543     i_result = p_sys->wraInitDecoder( context, &init_data );
544     if( i_result )
545     {
546         msg_Err( p_dec, "decoder init failed, error code: 0x%x", i_result );
547         goto error_win32;
548     }
549
550     if( p_sys->i_codec_flavor >= 0 )
551     {
552         i_result = p_sys->wraSetFlavor( context, p_sys->i_codec_flavor );
553         if( i_result )
554         {
555             msg_Err( p_dec, "decoder flavor setup failed, error code: 0x%x",
556                      i_result );
557             goto error_win32;
558         }
559
560         p_prop = p_sys->wraGetFlavorProperty( context, p_sys->i_codec_flavor,
561                                               0, &i_prop );
562         msg_Dbg( p_dec, "audio codec: [%d] %s",
563                  p_sys->i_codec_flavor, (char *)p_prop );
564
565         p_prop = p_sys->wraGetFlavorProperty( context, p_sys->i_codec_flavor,
566                                               1, &i_prop );
567         if( p_prop )
568         {
569             int i_bps = ((*((int*)p_prop))+4)/8;
570             msg_Dbg( p_dec, "audio bitrate: %5.3f kbit/s (%d bps)",
571                      (*((int*)p_prop))*0.001f, i_bps );
572         }
573     }
574
575     p_sys->context = context;
576     p_sys->win32_dll = handle;
577     return VLC_SUCCESS;
578
579  error_win32:
580     if( context ) p_sys->wraFreeDecoder( context );
581     if( context ) p_sys->wraCloseCodec( context );
582     FreeLibrary( handle );
583 #endif
584
585     return VLC_EGENERIC;
586 }
587
588 /*****************************************************************************
589  * CloseDll:
590  *****************************************************************************/
591 static void CloseDll( decoder_t *p_dec )
592 {
593     decoder_sys_t *p_sys = p_dec->p_sys;
594
595     if( p_sys->context && p_sys->dll )
596     {
597         p_sys->raFreeDecoder( p_sys->context );
598         p_sys->raCloseCodec( p_sys->context );
599     }
600
601     if( p_sys->context && p_sys->win32_dll )
602     {
603         p_sys->wraFreeDecoder( p_sys->context );
604         p_sys->wraCloseCodec( p_sys->context );
605     }
606
607 #if defined(HAVE_DL_DLOPEN)
608     if( p_sys->dll ) dlclose( p_sys->dll );
609 #endif
610
611 #if defined(LOADER) || defined(WIN32)
612     if( p_sys->win32_dll ) FreeLibrary( p_sys->win32_dll );
613
614 #if 0 //def LOADER /* Segfaults */
615     Restore_LDT_Keeper( p_sys->ldt_fs );
616     msg_Dbg( p_dec, "Restore_LDT_Keeper" );
617 #endif
618 #endif
619
620     p_sys->dll = 0;
621     p_sys->win32_dll = 0;
622     p_sys->context = 0;
623 }
624
625 /*****************************************************************************
626  * DecodeAudio:
627  *****************************************************************************/
628 static aout_buffer_t *Decode( decoder_t *p_dec, block_t **pp_block )
629 {
630     decoder_sys_t *p_sys = p_dec->p_sys;
631     aout_buffer_t *p_aout_buffer = 0;
632     unsigned int i_result;
633     int i_samples;
634     block_t *p_block;
635
636 #ifdef LOADER
637     if( !p_sys->win32_dll && !p_sys->dll )
638     {
639         /* We must do open and close in the same thread (unless we do
640          * Setup_LDT_Keeper in the main thread before all others */
641         if( OpenDll( p_dec ) != VLC_SUCCESS )
642         {
643             /* Fatal */
644             p_dec->b_error = VLC_TRUE;
645             return NULL;
646         }
647     }
648 #endif
649
650     if( pp_block == NULL || *pp_block == NULL ) return NULL;
651     p_block = *pp_block;
652
653     if( p_sys->dll )
654         i_result = p_sys->raDecode( p_sys->context, (char *)p_block->p_buffer,
655                                     (unsigned long)p_block->i_buffer,
656                                     p_sys->p_out, &p_sys->i_out, -1 );
657     else
658         i_result = p_sys->wraDecode( p_sys->context, (char *)p_block->p_buffer,
659                                      (unsigned long)p_block->i_buffer,
660                                      p_sys->p_out, &p_sys->i_out, -1 );
661
662 #if 0
663     msg_Err( p_dec, "decoded: %i samples (%i)",
664              p_sys->i_out * 8 / p_dec->fmt_out.audio.i_bitspersample /
665              p_dec->fmt_out.audio.i_channels, i_result );
666 #endif
667
668     /* Date management */
669     if( p_block->i_pts > 0 &&
670         p_block->i_pts != aout_DateGet( &p_sys->end_date ) )
671     {
672         aout_DateSet( &p_sys->end_date, p_block->i_pts );
673     }
674
675     if( !aout_DateGet( &p_sys->end_date ) )
676     {
677         /* We've just started the stream, wait for the first PTS. */
678         if( p_block ) block_Release( p_block );
679         return NULL;
680     }
681
682     i_samples = p_sys->i_out * 8 /
683         p_dec->fmt_out.audio.i_bitspersample /p_dec->fmt_out.audio.i_channels;
684
685     p_aout_buffer =
686         p_dec->pf_aout_buffer_new( p_dec, i_samples );
687     if( p_aout_buffer )
688     {
689         memcpy( p_aout_buffer->p_buffer, p_sys->p_out, p_sys->i_out );
690
691         /* Date management */
692         p_aout_buffer->start_date = aout_DateGet( &p_sys->end_date );
693         p_aout_buffer->end_date =
694             aout_DateIncrement( &p_sys->end_date, i_samples );
695     }
696
697     block_Release( p_block );
698     *pp_block = 0;
699     return p_aout_buffer;
700 }