]> git.sesse.net Git - vlc/blob - modules/demux/real.c
Fixed a few real demuxer issues.
[vlc] / modules / demux / real.c
1 /*****************************************************************************
2  * real.c: Real demuxer.
3  *****************************************************************************
4  * Copyright (C) 2004, 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /**
25  * Status of this demuxer:
26  * Real Media format
27  * -----------------
28  *
29  * version v3 w/ 14_4/lpcJ is ok.
30  * version v4/5: - atrac3 is ok.
31  *               - cook is ok.
32  *               - raac, racp are ok.
33  *               - dnet is twisted "The byte order of the data is reversed
34  *                                  from standard AC3" but ok
35  *               - 28_8 is ok.
36  *               - sipr should be fine, but our decoder suxx :)
37  *               - ralf is unsupported, but hardly any sample exist.
38  *               - mp3 is unsupported, one sample exists...
39  *
40  * Real Audio Only
41  * ---------------
42  * v3 and v4/5 headers are parsed.
43  * Doesn't work yet...
44  */
45
46 /*****************************************************************************
47  * Preamble
48  *****************************************************************************/
49
50 #ifdef HAVE_CONFIG_H
51 # include "config.h"
52 #endif
53
54 #include <vlc_common.h>
55 #include <vlc_plugin.h>
56
57 #include <vlc_demux.h>
58 #include <vlc_charset.h>
59 #include <vlc_meta.h>
60
61 /*****************************************************************************
62  * Module descriptor
63  *****************************************************************************/
64 static int  Open    ( vlc_object_t * );
65 static void Close  ( vlc_object_t * );
66
67 vlc_module_begin ()
68     set_description( N_("Real demuxer" ) )
69     set_capability( "demux", 50 )
70     set_category( CAT_INPUT )
71     set_subcategory( SUBCAT_INPUT_DEMUX )
72     set_callbacks( Open, Close )
73     add_shortcut( "real" )
74     add_shortcut( "rm" )
75 vlc_module_end ()
76
77 /*****************************************************************************
78  * Local prototypes
79  *****************************************************************************/
80
81 typedef struct
82 {
83     int         i_id;
84     es_format_t fmt;
85
86     es_out_id_t *p_es;
87
88     int         i_frame_size;
89
90     int         i_frame_num;
91     int         i_frame_pos;
92     int         i_frame_slice;
93     int         i_frame_slice_count;
94     block_t     *p_frame;
95
96     int         i_subpacket_h;
97     int         i_subpacket_size;
98     int         i_coded_frame_size;
99
100     int         i_subpacket;
101     int         i_subpackets;
102     block_t     **p_subpackets;
103     mtime_t     *p_subpackets_timecode;
104     int         i_out_subpacket;
105
106     mtime_t     i_last_dts;
107 } real_track_t;
108
109 typedef struct
110 {
111     uint32_t i_file_offset;
112     uint32_t i_time_offset;
113     uint32_t i_frame_index;
114 } real_index_t;
115
116 struct demux_sys_t
117 {
118     int64_t  i_data_offset;
119     int64_t  i_data_size;
120     uint32_t i_data_packets_count;
121     uint32_t i_data_packets;
122     int64_t  i_data_offset_next;
123
124     bool     b_real_audio;
125
126     int64_t i_our_duration;
127
128     char* psz_title;
129     char* psz_artist;
130     char* psz_copyright;
131     char* psz_description;
132
133     int          i_track;
134     real_track_t **track;
135
136     int     i_buffer;
137     uint8_t buffer[65536];
138
139     int64_t     i_pcr;
140
141     int64_t     i_index_offset;
142     bool        b_seek;
143     real_index_t *p_index;
144 };
145
146 static int Demux( demux_t * );
147 static int Control( demux_t *, int i_query, va_list args );
148
149
150 static void DemuxVideo( demux_t *, real_track_t *tk, mtime_t i_dts, unsigned i_flags );
151 static void DemuxAudio( demux_t *, real_track_t *tk, mtime_t i_pts, unsigned i_flags );
152
153 static int ControlSeekByte( demux_t *, int64_t i_bytes );
154 static int ControlSeekTime( demux_t *, mtime_t i_time );
155
156 static int HeaderRead( demux_t *p_demux );
157 static int CodecParse( demux_t *p_demux, int i_len, int i_num );
158
159 static void     RVoid( const uint8_t **pp_data, int *pi_data, int i_size );
160 static int      RLength( const uint8_t **pp_data, int *pi_data );
161 static uint8_t  R8( const uint8_t **pp_data, int *pi_data );
162 static uint16_t R16( const uint8_t **pp_data, int *pi_data );
163 static uint32_t R32( const uint8_t **pp_data, int *pi_data );
164
165 /*****************************************************************************
166  * Open
167  *****************************************************************************/
168 static int Open( vlc_object_t *p_this )
169 {
170     demux_t     *p_demux = (demux_t*)p_this;
171     demux_sys_t *p_sys;
172
173     const uint8_t *p_peek;
174     bool           b_real_audio = false;
175
176     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
177         return VLC_EGENERIC;
178
179     /* Real Audio */
180     if( !memcmp( p_peek, ".ra", 3 ) )
181     {
182         msg_Err( p_demux, ".ra files unsuported" );
183         b_real_audio = true;
184     }
185     /* Real Media Format */
186     else if( memcmp( p_peek, ".RMF", 4 ) )
187     {
188         return VLC_EGENERIC;
189     }
190
191     /* Fill p_demux field */
192     p_demux->pf_demux = Demux;
193     p_demux->pf_control = Control;
194
195     p_demux->p_sys = p_sys = calloc( 1, sizeof( *p_sys ) );
196     if( !p_sys )
197         return VLC_ENOMEM;
198
199     p_sys->i_data_offset = 0;
200     p_sys->i_track = 0;
201     p_sys->track   = NULL;
202     p_sys->i_pcr   = 0;
203
204     p_sys->b_seek  = false;
205     p_sys->b_real_audio = b_real_audio;
206
207     /* Parse the headers */
208     /* Real Audio files */
209     if( b_real_audio )
210     {
211         CodecParse( p_demux, 32, 0 ); /* At least 32 */
212         return VLC_EGENERIC;                     /* We don't know how to read
213                                                     correctly the data yet */
214     }
215     /* RMF files */
216     else if( HeaderRead( p_demux ) )
217     {
218         msg_Err( p_demux, "invalid header" );
219         Close( p_this );
220         return VLC_EGENERIC;
221     }
222
223     return VLC_SUCCESS;
224 }
225
226 /*****************************************************************************
227  * Close
228  *****************************************************************************/
229 static void Close( vlc_object_t *p_this )
230 {
231     demux_t *p_demux = (demux_t*)p_this;
232     demux_sys_t *p_sys = p_demux->p_sys;
233
234     for( int i = 0; i < p_sys->i_track; i++ )
235     {
236         real_track_t *tk = p_sys->track[i];
237
238         es_format_Clean( &tk->fmt );
239
240         if( tk->p_frame )
241             block_Release( tk->p_frame );
242
243         for( int j = 0; j < tk->i_subpackets; j++ )
244         {
245             if( tk->p_subpackets[ j ] )
246                 block_Release( tk->p_subpackets[ j ] );
247         }
248         if( tk->i_subpackets )
249         {
250             free( tk->p_subpackets );
251             free( tk->p_subpackets_timecode );
252         }
253         free( tk );
254     }
255     if( p_sys->i_track > 0 )
256         free( p_sys->track );
257
258     free( p_sys->psz_title );
259     free( p_sys->psz_artist );
260     free( p_sys->psz_copyright );
261     free( p_sys->psz_description );
262     free( p_sys->p_index );
263
264     free( p_sys );
265 }
266
267
268 /*****************************************************************************
269  * Demux:
270  *****************************************************************************/
271 static int Demux( demux_t *p_demux )
272 {
273     demux_sys_t *p_sys = p_demux->p_sys;
274     uint8_t     header[18];
275
276     if( p_sys->i_data_packets >= p_sys->i_data_packets_count &&
277         p_sys->i_data_packets_count )
278     {
279         if( stream_Read( p_demux->s, header, 18 ) < 18 )
280             return 0;
281
282         if( memcmp( header, "DATA", 4 ) )
283             return 0;
284
285         p_sys->i_data_offset = stream_Tell( p_demux->s ) - 18;
286         p_sys->i_data_size   = GetDWBE( &header[4] );
287         p_sys->i_data_packets_count = GetDWBE( &header[10] );
288         p_sys->i_data_packets = 0;
289         p_sys->i_data_offset_next = GetDWBE( &header[14] );
290
291         msg_Dbg( p_demux, "entering new DATA packets=%d next=%u",
292                  p_sys->i_data_packets_count,
293                  (unsigned int)p_sys->i_data_offset_next );
294     }
295
296     /* Read Packet Header */
297     if( stream_Read( p_demux->s, header, 12 ) < 12 )
298         return 0;
299     //const int i_version = GetWBE( &header[0] );
300     const int     i_size = GetWBE( &header[2] ) - 12;
301     const int     i_id   = GetWBE( &header[4] );
302     const int64_t i_pts  = 1 + 1000 * GetDWBE( &header[6] );
303     const int     i_flags= header[11]; /* flags 0x02 -> keyframe */
304
305     p_sys->i_data_packets++;
306
307     if( i_size <= 0 )
308     {
309         msg_Err( p_demux, "Got a NUKK size to read. (Invalid format?)" );
310         return 1;
311     }
312
313     assert( i_size <= sizeof(p_sys->buffer) );
314
315     p_sys->i_buffer = stream_Read( p_demux->s, p_sys->buffer, i_size );
316     if( p_sys->i_buffer < i_size )
317         return 0;
318
319     real_track_t *tk = NULL;
320     for( int i = 0; i < p_sys->i_track; i++ )
321     {
322         if( p_sys->track[i]->i_id == i_id )
323             tk = p_sys->track[i];
324     }
325
326     if( !tk )
327     {
328         msg_Warn( p_demux, "unknown track id(0x%x)", i_id );
329         return 1;
330     }
331
332     if( tk->fmt.i_cat == VIDEO_ES )
333     {
334         DemuxVideo( p_demux, tk, i_pts, i_flags );
335     }
336     else
337     {
338         assert( tk->fmt.i_cat == AUDIO_ES );
339         DemuxAudio( p_demux, tk, i_pts, i_flags );
340     }
341
342     /* Update PCR */
343     mtime_t i_pcr = 0;
344     for( int i = 0; i < p_sys->i_track; i++ )
345     {
346         real_track_t *tk = p_sys->track[i];
347
348         if( i_pcr <= 0 || ( tk->i_last_dts > 0 && tk->i_last_dts < i_pcr ) )
349             i_pcr = tk->i_last_dts;
350     }
351     if( i_pcr > 0 && i_pcr != p_sys->i_pcr )
352     {
353         p_sys->i_pcr = i_pcr;
354         es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr );
355     }
356     return 1;
357 }
358
359 /*****************************************************************************
360  * Control:
361  *****************************************************************************/
362 static int Control( demux_t *p_demux, int i_query, va_list args )
363 {
364     demux_sys_t *p_sys = p_demux->p_sys;
365     double f, *pf;
366     int64_t i64;
367     int64_t *pi64;
368
369     switch( i_query )
370     {
371         case DEMUX_GET_POSITION:
372             pf = (double*) va_arg( args, double* );
373
374             /* read stream size maybe failed in rtsp streaming, 
375                so use duration to determin the position at first  */
376             if( p_sys->i_our_duration > 0 )
377             {
378                 *pf = (double)p_sys->i_pcr / 1000.0 / p_sys->i_our_duration;
379                 return VLC_SUCCESS;
380             }
381
382             *pf = 0.0;
383             i64 = stream_Size( p_demux->s );
384             if( i64 > 0 )
385                 *pf = (double)1.0*stream_Tell( p_demux->s ) / (double)i64;
386             return VLC_SUCCESS;
387
388         case DEMUX_GET_TIME:
389             pi64 = (int64_t*)va_arg( args, int64_t * );
390
391             if( p_sys->i_our_duration > 0 )
392             {
393                 *pi64 = p_sys->i_pcr;
394                 return VLC_SUCCESS;
395             }
396
397             /* same as GET_POSTION */
398             i64 = stream_Size( p_demux->s );
399             if( p_sys->i_our_duration > 0 && i64 > 0 )
400             {
401                 *pi64 = (int64_t)( 1000.0 * p_sys->i_our_duration * stream_Tell( p_demux->s ) / i64 );
402                 return VLC_SUCCESS;
403             }
404
405             *pi64 = 0;
406             return VLC_EGENERIC;
407
408         case DEMUX_SET_POSITION:
409             f = (double) va_arg( args, double );
410             i64 = (int64_t) ( stream_Size( p_demux->s ) * f );
411
412             if( !p_sys->p_index && i64 != 0 )
413             {
414                 /* TODO seek */
415                 msg_Err( p_demux,"Seek No Index Real File failed!" );
416                 return VLC_EGENERIC; // no index!
417             }
418             else if( i64 == 0 )
419             {
420                 /* it is a rtsp stream , it is specials in access/rtsp/... */
421                 msg_Dbg(p_demux, "Seek in real rtsp stream!");
422                 p_sys->i_pcr = INT64_C(1000) * ( p_sys->i_our_duration * f  );
423                 p_sys->b_seek = true;
424                 return stream_Seek( p_demux->s, p_sys->i_pcr );
425             }
426             return ControlSeekByte( p_demux, i64 );
427
428         case DEMUX_SET_TIME:
429             if( !p_sys->p_index )
430                 return VLC_EGENERIC;
431
432             i64 = (int64_t) va_arg( args, int64_t );
433             return ControlSeekTime( p_demux, i64 );
434
435         case DEMUX_GET_LENGTH:
436             pi64 = (int64_t*)va_arg( args, int64_t * );
437  
438             *pi64 = 0;
439             if( p_sys->i_our_duration <= 0 )
440                 return VLC_EGENERIC;
441
442             /* our stored duration is in ms, so... */
443             *pi64 = INT64_C(1000) * p_sys->i_our_duration;
444             return VLC_SUCCESS;
445
446         case DEMUX_GET_META:
447         {
448             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
449
450             /* the core will crash if we provide NULL strings, so check
451              * every string first */
452             if( p_sys->psz_title )
453                 vlc_meta_SetTitle( p_meta, p_sys->psz_title );
454             if( p_sys->psz_artist )
455                 vlc_meta_SetArtist( p_meta, p_sys->psz_artist );
456             if( p_sys->psz_copyright )
457                 vlc_meta_SetCopyright( p_meta, p_sys->psz_copyright );
458             if( p_sys->psz_description )
459                 vlc_meta_SetDescription( p_meta, p_sys->psz_description );
460             return VLC_SUCCESS;
461         }
462
463         case DEMUX_GET_FPS:
464         default:
465             return VLC_EGENERIC;
466     }
467     return VLC_EGENERIC;
468 }
469
470 /*****************************************************************************
471  * Helpers: demux
472  *****************************************************************************/
473 static void CheckPcr( demux_t *p_demux, real_track_t *tk, mtime_t i_dts )
474 {
475     demux_sys_t *p_sys = p_demux->p_sys;
476
477     if( i_dts > 0 )
478         tk->i_last_dts = i_dts;
479
480     if( p_sys->i_pcr > 0 || i_dts <= 0 )
481         return;
482
483     p_sys->i_pcr = i_dts;
484     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr );
485 }
486
487 static void DemuxVideo( demux_t *p_demux, real_track_t *tk, mtime_t i_dts, unsigned i_flags )
488 {
489     demux_sys_t *p_sys = p_demux->p_sys;
490
491     const uint8_t *p_data = p_sys->buffer;
492     int     i_data = p_sys->i_buffer;
493
494     while( i_data > 1 )
495     {
496         uint8_t i_hdr = R8( &p_data, &i_data );
497         uint8_t i_type = i_hdr >> 6;
498
499         uint8_t i_seq;
500         int i_len;
501         int i_pos;
502         int i_frame_num;
503
504         if( i_type == 1 )
505         {
506             R8( &p_data, &i_data );
507             i_len = i_data;
508             i_pos = 0;
509             i_frame_num = -1;
510             i_seq = 1;
511             i_hdr &= ~0x3f;
512         }
513         else if( i_type == 3 )
514         {
515             i_len = RLength( &p_data, &i_data );
516             i_pos = RLength( &p_data, &i_data );
517             i_frame_num = R8( &p_data, &i_data );
518             i_seq = 1;
519             i_hdr &= ~0x3f;
520         }
521         else
522         {
523             assert( i_type == 0 || i_type == 2 );
524             i_seq = R8( &p_data, &i_data );
525             i_len = RLength( &p_data, &i_data );
526
527             i_pos = RLength( &p_data, &i_data );
528             i_frame_num = R8( &p_data, &i_data );
529         }
530
531         if( (i_seq & 0x7f) == 1 || tk->i_frame_num != i_frame_num )
532         {
533             tk->i_frame_slice = 0;
534             tk->i_frame_slice_count = 2 * (i_hdr & 0x3f) + 1;
535             tk->i_frame_pos = 2*4 * tk->i_frame_slice_count + 1;
536             tk->i_frame_size = i_len + 2*4 * tk->i_frame_slice_count + 1;
537             tk->i_frame_num = i_frame_num;
538
539             if( tk->p_frame )
540                 block_Release( tk->p_frame );
541
542             tk->p_frame = block_New( p_demux, tk->i_frame_size );
543             if( !tk->p_frame )
544             {
545                 tk->i_frame_slice = 0;
546                 tk->i_frame_slice_count = 0;
547                 return;
548             }
549
550             tk->p_frame->i_dts = i_dts;
551             tk->p_frame->i_pts = 0;
552             if( i_flags & 0x02 )
553                 tk->p_frame->i_flags |= BLOCK_FLAG_TYPE_I;
554
555             i_dts = 0;
556         }
557
558         int i_frame_data;
559         if( i_type == 3 )
560         {
561             i_frame_data = i_len;
562         }
563         else
564         {
565             i_frame_data = i_data;
566             if( i_type == 2 && i_frame_data > i_pos )
567                 i_frame_data = i_pos;
568         }
569         if( i_frame_data > i_data )
570             break;
571
572         /* */
573         tk->i_frame_slice++;
574         if( tk->i_frame_slice > tk->i_frame_slice_count )
575             break;
576
577         /* */
578         SetDWLE( &tk->p_frame->p_buffer[2*4*(tk->i_frame_slice-1) + 1 + 0], 1 );
579         SetDWLE( &tk->p_frame->p_buffer[2*4*(tk->i_frame_slice-1) + 1 + 4], tk->i_frame_pos - (2*4 * tk->i_frame_slice_count + 1) );
580
581         if( tk->i_frame_pos + i_frame_data > tk->i_frame_size )
582             break;
583
584         memcpy( &tk->p_frame->p_buffer[tk->i_frame_pos], p_data, i_frame_data );
585         RVoid( &p_data, &i_data, i_frame_data );
586         tk->i_frame_pos += i_frame_data;
587
588         if( i_type != 0 || tk->i_frame_pos >= tk->i_frame_size )
589         {
590             /* Fix the buffer once the real number of slice is known */
591             tk->p_frame->p_buffer[0] = tk->i_frame_slice - 1;
592             tk->p_frame->i_buffer = tk->i_frame_pos - 2*4*( tk->i_frame_slice_count - tk->i_frame_slice );
593
594             memmove( &tk->p_frame->p_buffer[1+2*4*tk->i_frame_slice      ],
595                      &tk->p_frame->p_buffer[1+2*4*tk->i_frame_slice_count],
596                      tk->i_frame_pos - (2*4*tk->i_frame_slice_count + 1) );
597
598             /* Send it */
599             CheckPcr( p_demux, tk, tk->p_frame->i_dts );
600             es_out_Send( p_demux->out, tk->p_es, tk->p_frame );
601
602             tk->i_frame_size = 0;
603             tk->p_frame = NULL;
604         }
605     }
606 }
607
608 static void DemuxAudioMethod1( demux_t *p_demux, real_track_t *tk, mtime_t i_pts, unsigned int i_flags )
609 {
610     demux_sys_t *p_sys = p_demux->p_sys;
611     uint8_t *p_buf = p_sys->buffer;
612
613     /* Sanity check */
614     if( (i_flags & 2) || p_sys->b_seek )
615     {
616         tk->i_subpacket = 0;
617         tk->i_out_subpacket = 0;
618         p_sys->b_seek = false;
619     }
620
621     if( tk->fmt.i_codec == VLC_FOURCC( 'c', 'o', 'o', 'k' ) ||
622         tk->fmt.i_codec == VLC_FOURCC( 'a', 't', 'r', 'c' ) ||
623         tk->fmt.i_codec == VLC_FOURCC( 's', 'i', 'p', 'r' ) )
624     {
625         const int i_num = tk->i_frame_size / tk->i_subpacket_size;
626         const int y = tk->i_subpacket / ( tk->i_frame_size / tk->i_subpacket_size );
627
628         for( int i = 0; i < i_num; i++ )
629         {
630             block_t *p_block = block_New( p_demux, tk->i_subpacket_size );
631             if( !p_block )
632                 return;
633             if( &p_buf[tk->i_subpacket_size] > &p_sys->buffer[p_sys->i_buffer] )
634                 return;
635
636             memcpy( p_block->p_buffer, p_buf, tk->i_subpacket_size );
637             p_block->i_dts =
638             p_block->i_pts = 0;
639
640             p_buf += tk->i_subpacket_size;
641
642             int i_index = tk->i_subpacket_h * i +
643                           ((tk->i_subpacket_h + 1) / 2) * (y&1) + (y>>1);
644
645             if( tk->p_subpackets[i_index] != NULL )
646             {
647                 msg_Dbg(p_demux, "p_subpackets[ %d ] not null!",  i_index );
648                 block_Release( tk->p_subpackets[i_index] );
649             }
650
651             tk->p_subpackets[i_index] = p_block;
652             if( tk->i_subpacket == 0 )
653                 tk->p_subpackets_timecode[0] = i_pts;
654             tk->i_subpacket++;
655         }
656     }
657     else
658     {
659         const int y = tk->i_subpacket / (tk->i_subpacket_h / 2);
660         assert( tk->fmt.i_codec == VLC_FOURCC( '2', '8', '_', '8' ) );
661
662         for( int i = 0; i < tk->i_subpacket_h / 2; i++ )
663         {
664             block_t *p_block = block_New( p_demux, tk->i_coded_frame_size);
665             if( !p_block )
666                 return;
667             if( &p_buf[tk->i_coded_frame_size] > &p_sys->buffer[p_sys->i_buffer] )
668                 return;
669
670             int i_index = (i * 2 * tk->i_frame_size / tk->i_coded_frame_size) + y;
671
672             memcpy( p_block->p_buffer, p_buf, tk->i_coded_frame_size );
673             p_block->i_dts =
674             p_block->i_pts = i_index == 0 ? i_pts : 0;
675
676             p_buf += tk->i_coded_frame_size;
677
678             if( tk->p_subpackets[i_index] != NULL )
679             {
680                 msg_Dbg(p_demux, "p_subpackets[ %d ] not null!",  i_index );
681                 block_Release( tk->p_subpackets[i_index] );
682             }
683
684             tk->p_subpackets[i_index] = p_block;
685             tk->i_subpacket++;
686         }
687     }
688
689     while( tk->i_out_subpacket != tk->i_subpackets &&
690            tk->p_subpackets[tk->i_out_subpacket] )
691     {
692         block_t *p_block = tk->p_subpackets[tk->i_out_subpacket];
693         tk->p_subpackets[tk->i_out_subpacket] = NULL;
694
695         if( tk->p_subpackets_timecode[tk->i_out_subpacket] )
696         {
697             p_block->i_dts =
698             p_block->i_pts = tk->p_subpackets_timecode[tk->i_out_subpacket];
699
700             tk->p_subpackets_timecode[tk->i_out_subpacket] = 0;
701         }
702         tk->i_out_subpacket++;
703
704         CheckPcr( p_demux, tk, p_block->i_pts );
705         es_out_Send( p_demux->out, tk->p_es, p_block );
706     }
707
708     if( tk->i_subpacket == tk->i_subpackets &&
709         tk->i_out_subpacket != tk->i_subpackets )
710     {
711         msg_Warn( p_demux, "i_subpacket != i_out_subpacket, "
712                   "this shouldn't happen" );
713     }
714
715     if( tk->i_subpacket == tk->i_subpackets )
716     {
717         tk->i_subpacket = 0;
718         tk->i_out_subpacket = 0;
719     }
720 }
721 static void DemuxAudioMethod2( demux_t *p_demux, real_track_t *tk, mtime_t i_pts )
722 {
723     demux_sys_t *p_sys = p_demux->p_sys;
724
725     if( p_sys->i_buffer < 2 )
726         return;
727
728     int i_sub = (p_sys->buffer[1] >> 4)&0x0f;
729     if( p_sys->i_buffer < 2+2*i_sub )
730         return;
731
732     uint8_t *p_sub = &p_sys->buffer[2+2*i_sub];
733
734     for( int i = 0; i < i_sub; i++ )
735     {
736         const int i_sub_size = GetWBE( &p_sys->buffer[2+i*2] );
737         block_t *p_block = block_New( p_demux, i_sub_size );
738         if( !p_block )
739             break;
740
741         if( &p_sub[i_sub_size] > &p_sys->buffer[p_sys->i_buffer] )
742             break;
743
744         memcpy( p_block->p_buffer, p_sub, i_sub_size );
745         p_sub += i_sub_size;
746
747         p_block->i_dts =
748         p_block->i_pts = ( i == 0 ? i_pts : 0 );
749
750         CheckPcr( p_demux, tk, p_block->i_pts );
751         es_out_Send( p_demux->out, tk->p_es, p_block );
752     }
753 }
754 static void DemuxAudioMethod3( demux_t *p_demux, real_track_t *tk, mtime_t i_pts )
755 {
756     demux_sys_t *p_sys = p_demux->p_sys;
757
758     if( p_sys->i_buffer <= 0 )
759         return;
760
761     block_t *p_block = block_New( p_demux, p_sys->i_buffer );
762     if( !p_block )
763         return;
764
765     if( tk->fmt.i_codec == VLC_FOURCC( 'a', '5', '2', ' ' ) )
766     {
767         uint8_t *p_src = p_sys->buffer;
768         uint8_t *p_dst = p_block->p_buffer;
769
770         /* byte swap data */
771         while( p_dst < &p_block->p_buffer[p_sys->i_buffer - 1])
772         {
773             *p_dst++ = p_src[1];
774             *p_dst++ = p_src[0];
775
776             p_src += 2;
777         }
778     }
779     else
780     {
781         memcpy( p_block->p_buffer, p_sys->buffer, p_sys->i_buffer );
782     }
783     p_block->i_dts =
784     p_block->i_pts = i_pts;
785
786     CheckPcr( p_demux, tk, p_block->i_pts );
787     es_out_Send( p_demux->out, tk->p_es, p_block );
788 }
789
790 static void DemuxAudio( demux_t *p_demux, real_track_t *tk, mtime_t i_pts, unsigned i_flags )
791 {
792     switch( tk->fmt.i_codec )
793     {
794     case VLC_FOURCC( 'c', 'o', 'o', 'k' ):
795     case VLC_FOURCC( 'a', 't', 'r', 'c' ):
796     case VLC_FOURCC( 's', 'i', 'p', 'r' ):
797     case VLC_FOURCC( '2', '8', '_', '8' ):
798         DemuxAudioMethod1( p_demux, tk, i_pts, i_flags );
799         break;
800     case VLC_FOURCC( 'm','p','4','a' ):
801         DemuxAudioMethod2( p_demux, tk, i_pts );
802         break;
803     default:
804         DemuxAudioMethod3( p_demux, tk, i_pts );
805         break;
806     }
807 }
808
809 /*****************************************************************************
810  * Helpers: seek/control
811  *****************************************************************************/
812 static int ControlGoToIndex( demux_t *p_demux, real_index_t *p_index )
813 {
814     demux_sys_t *p_sys = p_demux->p_sys;
815
816     p_sys->b_seek = true;
817     p_sys->i_pcr = INT64_C(1000) * p_index->i_time_offset;
818     for( int i = 0; i < p_sys->i_track; i++ )
819         p_sys->track[i]->i_last_dts = 0;
820     return stream_Seek( p_demux->s, p_index->i_file_offset );
821 }
822 static int ControlSeekTime( demux_t *p_demux, mtime_t i_time )
823 {
824     demux_sys_t *p_sys = p_demux->p_sys;
825     real_index_t *p_index = p_sys->p_index;
826
827     while( p_index->i_file_offset != 0 )
828     {
829         if( p_index->i_time_offset * INT64_C(1000) > i_time )
830         {
831             if( p_index != p_sys->p_index )
832                 p_index--;
833             break;
834         }
835         p_index++;
836     }
837     if( p_index->i_file_offset == 0 )
838         return VLC_EGENERIC;
839     return ControlGoToIndex( p_demux, p_index );
840 }
841 static int ControlSeekByte( demux_t *p_demux, int64_t i_bytes )
842 {
843     demux_sys_t *p_sys = p_demux->p_sys;
844     real_index_t *p_index = p_sys->p_index;
845
846     while( p_index->i_file_offset != 0 )
847     {
848         if( p_index->i_file_offset > i_bytes )
849         {
850             if( p_index != p_sys->p_index )
851                 p_index--;
852             break;
853         }
854         p_index++;
855     }
856     if( p_index->i_file_offset == 0 )
857         return VLC_EGENERIC;
858     return ControlGoToIndex( p_demux, p_index );
859 }
860
861 /*****************************************************************************
862  * Helpers: header reading
863  *****************************************************************************/
864
865 /**
866  * This function will read a pascal string with size stored in 2 bytes from
867  * a stream_t.
868  *
869  * FIXME what is the right charset ?
870  */
871 static char *StreamReadString2( stream_t *s )
872 {
873     uint8_t p_tmp[2];
874
875     if( stream_Read( s, p_tmp, 2 ) < 2 )
876         return NULL;
877
878     const int i_length = GetWBE( p_tmp );
879     if( i_length <= 0 )
880         return NULL;
881
882     char *psz_string = calloc( 1, i_length + 1 );
883
884     stream_Read( s, psz_string, i_length ); /* Valid even if !psz_string */
885
886     if( psz_string )
887         EnsureUTF8( psz_string );
888     return psz_string;
889 }
890
891 /**
892  * This function will read a pascal string with size stored in 1 byte from a
893  * memory buffer.
894  *
895  * FIXME what is the right charset ?
896  */
897 static char *MemoryReadString1( const uint8_t **pp_data, int *pi_data )
898 {
899     const uint8_t *p_data = *pp_data;
900     int           i_data = *pi_data;
901
902     char *psz_string = NULL;
903
904     if( i_data < 1 )
905         goto exit;
906
907     int i_length = *p_data++; i_data--;
908     if( i_length > i_data )
909         i_length = i_data;
910
911     if( i_length > 0 )
912     {
913         psz_string = strndup( (const char*)p_data, i_length );
914         if( psz_string )
915             EnsureUTF8( psz_string );
916
917         p_data += i_length;
918         i_data -= i_length;
919     }
920
921 exit:
922     *pp_data = p_data;
923     *pi_data = i_data;
924     return psz_string;
925 }
926
927 /**
928  * This function parses(skip) the .RMF identification chunk.
929  */
930 static int HeaderRMF( demux_t *p_demux )
931 {
932     uint8_t p_buffer[8];
933
934     if( stream_Read( p_demux->s, p_buffer, 8 ) < 8 )
935         return VLC_EGENERIC;
936
937     msg_Dbg( p_demux, "    - file version=0x%x num headers=%d",
938              GetDWBE( &p_buffer[0] ), GetDWBE( &p_buffer[4] ) );
939     return VLC_SUCCESS;
940 }
941 /**
942  * This function parses the PROP properties chunk.
943  */
944 static int HeaderPROP( demux_t *p_demux )
945 {
946     demux_sys_t *p_sys = p_demux->p_sys;
947
948     uint8_t p_buffer[40];
949     int i_flags;
950
951     if( stream_Read( p_demux->s, p_buffer, 40 ) < 40 )
952         return VLC_EGENERIC;
953
954     msg_Dbg( p_demux, "    - max bitrate=%d avg bitrate=%d",
955              GetDWBE(&p_buffer[0]), GetDWBE(&p_buffer[4]) );
956     msg_Dbg( p_demux, "    - max packet size=%d avg bitrate=%d",
957              GetDWBE(&p_buffer[8]), GetDWBE(&p_buffer[12]) );
958     msg_Dbg( p_demux, "    - packets count=%d", GetDWBE(&p_buffer[16]) );
959     msg_Dbg( p_demux, "    - duration=%d ms", GetDWBE(&p_buffer[20]) );
960     msg_Dbg( p_demux, "    - preroll=%d ms", GetDWBE(&p_buffer[24]) );
961     msg_Dbg( p_demux, "    - index offset=%d", GetDWBE(&p_buffer[28]) );
962     msg_Dbg( p_demux, "    - data offset=%d", GetDWBE(&p_buffer[32]) );
963     msg_Dbg( p_demux, "    - num streams=%d", GetWBE(&p_buffer[36]) );
964
965     /* set the duration for export in control */
966     p_sys->i_our_duration = GetDWBE(&p_buffer[20]);
967
968     p_sys->i_index_offset = GetDWBE(&p_buffer[28]);
969
970     i_flags = GetWBE(&p_buffer[38]);
971     msg_Dbg( p_demux, "    - flags=0x%x %s%s%s",
972              i_flags,
973              i_flags&0x0001 ? "PN_SAVE_ENABLED " : "",
974              i_flags&0x0002 ? "PN_PERFECT_PLAY_ENABLED " : "",
975              i_flags&0x0004 ? "PN_LIVE_BROADCAST" : "" );
976
977     return VLC_SUCCESS;
978 }
979 /**
980  * This functions parses the CONT commentairs chunk.
981  */
982 static int HeaderCONT( demux_t *p_demux )
983 {
984     demux_sys_t *p_sys = p_demux->p_sys;
985
986     /* */
987     p_sys->psz_title = StreamReadString2( p_demux->s );
988     if( p_sys->psz_title )
989         msg_Dbg( p_demux, "    - title=`%s'", p_sys->psz_title );
990
991     /* */
992     p_sys->psz_artist = StreamReadString2( p_demux->s );
993     if( p_sys->psz_artist )
994         msg_Dbg( p_demux, "    - artist=`%s'", p_sys->psz_artist );
995
996     /* */
997     p_sys->psz_copyright = StreamReadString2( p_demux->s );
998     if( p_sys->psz_copyright )
999         msg_Dbg( p_demux, "    - copyright=`%s'", p_sys->psz_copyright );
1000
1001     /* */
1002     p_sys->psz_description = StreamReadString2( p_demux->s );
1003     if( p_sys->psz_description )
1004         msg_Dbg( p_demux, "    - comment=`%s'", p_sys->psz_description );
1005
1006     return VLC_SUCCESS;
1007 }
1008 /**
1009  * This function parses the MDPR (Media properties) chunk.
1010  */
1011 static int HeaderMDPR( demux_t *p_demux )
1012 {
1013     uint8_t p_buffer[30];
1014
1015     if( stream_Read( p_demux->s, p_buffer, 30 ) < 30 )
1016         return VLC_EGENERIC;
1017
1018     const int i_num = GetWBE( &p_buffer[0] );
1019     msg_Dbg( p_demux, "    - id=0x%x", i_num );
1020     msg_Dbg( p_demux, "    - max bitrate=%d avg bitrate=%d",
1021              GetDWBE(&p_buffer[2]), GetDWBE(&p_buffer[6]) );
1022     msg_Dbg( p_demux, "    - max packet size=%d avg packet size=%d",
1023              GetDWBE(&p_buffer[10]), GetDWBE(&p_buffer[14]) );
1024     msg_Dbg( p_demux, "    - start time=%d", GetDWBE(&p_buffer[18]) );
1025     msg_Dbg( p_demux, "    - preroll=%d", GetDWBE(&p_buffer[22]) );
1026     msg_Dbg( p_demux, "    - duration=%d", GetDWBE(&p_buffer[26]) );
1027
1028     /* */
1029     const uint8_t *p_peek;
1030     int i_peek_org = stream_Peek( p_demux->s, &p_peek, 2 * 256 );
1031     int i_peek = i_peek_org;
1032     if( i_peek <= 0 )
1033         return VLC_EGENERIC;
1034
1035     char *psz_name = MemoryReadString1( &p_peek, &i_peek );
1036     if( psz_name )
1037     {
1038         msg_Dbg( p_demux, "    - name=`%s'", psz_name );
1039         free( psz_name );
1040     }
1041     char *psz_mime = MemoryReadString1( &p_peek, &i_peek );
1042     if( psz_mime )
1043     {
1044         msg_Dbg( p_demux, "    - mime=`%s'", psz_mime );
1045         free( psz_mime );
1046     }
1047     const int i_skip = i_peek_org - i_peek;
1048     if( i_skip > 0 && stream_Read( p_demux->s, NULL, i_skip ) < i_skip )
1049         return VLC_EGENERIC;
1050
1051     /* */
1052     if( stream_Read( p_demux->s, p_buffer, 4 ) < 4 )
1053         return VLC_EGENERIC;
1054
1055     const uint32_t i_size = GetDWBE( p_buffer );
1056     if( i_size > 0 )
1057     {
1058         CodecParse( p_demux, i_size, i_num );
1059         if( stream_Read( p_demux->s, NULL, i_size ) < i_size )
1060             return VLC_EGENERIC;
1061     }
1062     return VLC_SUCCESS;
1063 }
1064 /**
1065  * This function parses DATA chunk (it contains the actual movie data).
1066  */
1067 static int HeaderDATA( demux_t *p_demux, uint32_t i_size )
1068 {
1069     demux_sys_t *p_sys = p_demux->p_sys;
1070     uint8_t p_buffer[8];
1071
1072     if( stream_Read( p_demux->s, p_buffer, 8 ) < 8 )
1073         return VLC_EGENERIC;
1074
1075     p_sys->i_data_offset    = stream_Tell( p_demux->s ) - 10;
1076     p_sys->i_data_size      = i_size;
1077     p_sys->i_data_packets_count = GetDWBE( p_buffer );
1078     p_sys->i_data_packets   = 0;
1079     p_sys->i_data_offset_next = GetDWBE( &p_buffer[4] );
1080
1081     msg_Dbg( p_demux, "    - packets count=%d next=%u",
1082              p_sys->i_data_packets_count,
1083              (unsigned int)p_sys->i_data_offset_next );
1084     return VLC_SUCCESS;
1085 }
1086 /**
1087  * This function parses the INDX (movie index chunk).
1088  * It is optional but seeking without it is ... hard.
1089  */
1090 static void HeaderINDX( demux_t *p_demux )
1091 {
1092     demux_sys_t *p_sys = p_demux->p_sys;
1093     uint8_t       buffer[20];
1094
1095     uint32_t      i_index_count;
1096
1097     if( p_sys->i_index_offset == 0 )
1098         return;
1099
1100     stream_Seek( p_demux->s, p_sys->i_index_offset );
1101
1102     if( stream_Read( p_demux->s, buffer, 20 ) < 20 )
1103         return ;
1104
1105     const uint32_t i_id = VLC_FOURCC( buffer[0], buffer[1], buffer[2], buffer[3] );
1106     const uint32_t i_size      = GetDWBE( &buffer[4] );
1107     int i_version   = GetWBE( &buffer[8] );
1108
1109     msg_Dbg( p_demux, "Real index %4.4s size=%d version=%d",
1110                  (char*)&i_id, i_size, i_version );
1111
1112     if( (i_size < 20) && (i_id != VLC_FOURCC('I','N','D','X')) )
1113         return;
1114
1115     i_index_count = GetDWBE( &buffer[10] );
1116
1117     msg_Dbg( p_demux, "Real Index : num : %d ", i_index_count );
1118
1119     if( i_index_count >= ( 0xffffffff / sizeof(*p_sys->p_index) ) )
1120         return;
1121
1122     if( GetDWBE( &buffer[16] ) > 0 )
1123         msg_Dbg( p_demux, "Real Index: Does next index exist? %d ",
1124                         GetDWBE( &buffer[16] )  );
1125
1126     /* One extra entry is allocated (that MUST be set to 0) to identify the
1127      * end of the index.
1128      * TODO add a clean entry count (easier to build index on the fly) */
1129     p_sys->p_index = calloc( i_index_count + 1, sizeof(*p_sys->p_index) );
1130     if( !p_sys->p_index )
1131         return;
1132
1133     for( unsigned int i = 0; i < i_index_count; i++ )
1134     {
1135         uint8_t p_entry[14];
1136
1137         if( stream_Read( p_demux->s, p_entry, 14 ) < 14 )
1138             return ;
1139
1140         if( GetWBE( &p_entry[0] ) != 0 )
1141         {
1142             msg_Dbg( p_demux, "Real Index: invaild version of index entry %d ",
1143                               GetWBE( &p_entry[0] ) );
1144             return;
1145         }
1146
1147         real_index_t *p_idx = &p_sys->p_index[i];
1148         
1149         p_idx->i_time_offset = GetDWBE( &p_entry[2] );
1150         p_idx->i_file_offset = GetDWBE( &p_entry[6] );
1151         p_idx->i_frame_index = GetDWBE( &p_entry[10] );
1152
1153         msg_Dbg( p_demux,
1154                  "Real Index: time %"PRIu32" file %"PRIu32" frame %"PRIu32,
1155                  p_idx->i_time_offset,
1156                  p_idx->i_file_offset,
1157                  p_idx->i_frame_index );
1158     }
1159 }
1160
1161
1162 /**
1163  * This function parses the complete RM headers and move the
1164  * stream pointer to the data to be read.
1165  */
1166 static int HeaderRead( demux_t *p_demux )
1167 {
1168     demux_sys_t *p_sys = p_demux->p_sys;
1169
1170     for( ;; )
1171     {
1172         const int64_t i_stream_position = stream_Tell( p_demux->s );
1173         uint8_t header[100];    /* FIXME */
1174
1175         /* Read the header */
1176         if( stream_Read( p_demux->s, header, 10 ) < 10 )
1177             return VLC_EGENERIC;
1178
1179         const uint32_t i_id = VLC_FOURCC( header[0], header[1],
1180                                           header[2], header[3] );
1181         const uint32_t i_size = GetDWBE( &header[4] );
1182         const int i_version = GetWBE( &header[8] );
1183
1184         msg_Dbg( p_demux, "object %4.4s size=%d version=%d",
1185                  (char*)&i_id, i_size, i_version );
1186
1187         /* */
1188         if( i_size < 10 && i_id != VLC_FOURCC('D','A','T','A') )
1189         {
1190             msg_Dbg( p_demux, "invalid size for object %4.4s", (char*)&i_id );
1191             return VLC_EGENERIC;
1192         }
1193
1194         int i_ret;
1195         switch( i_id )
1196         {
1197         case VLC_FOURCC('.','R','M','F'):
1198             i_ret = HeaderRMF( p_demux );
1199             break;
1200         case VLC_FOURCC('P','R','O','P'):
1201             i_ret = HeaderPROP( p_demux );
1202             break;
1203         case VLC_FOURCC('C','O','N','T'):
1204             i_ret = HeaderCONT( p_demux );
1205             break;
1206         case VLC_FOURCC('M','D','P','R'):
1207             i_ret = HeaderMDPR( p_demux );
1208             break;
1209         case VLC_FOURCC('D','A','T','A'):
1210             i_ret = HeaderDATA( p_demux, i_size );
1211             break;
1212         default:
1213             /* unknow header */
1214             msg_Dbg( p_demux, "unknown chunk" );
1215             i_ret = VLC_SUCCESS;
1216             break;
1217         }
1218         if( i_ret )
1219             return i_ret;
1220
1221         if( i_id == VLC_FOURCC('D','A','T','A') ) /* In this case, parsing is finished */
1222             break;
1223
1224         /* Skip unread data */
1225         const int64_t i_stream_current = stream_Tell( p_demux->s );
1226         const int64_t i_stream_skip = (i_stream_position + i_size) - i_stream_current;
1227
1228         if( i_stream_skip > 0 )
1229         {
1230             if( stream_Read( p_demux->s, NULL, i_stream_skip ) != i_stream_skip )
1231                 return VLC_EGENERIC;
1232         }
1233         else if( i_stream_skip < 0 )
1234         {
1235             return VLC_EGENERIC;
1236         }
1237     }
1238
1239     /* read index if possible */
1240     if( p_sys->i_index_offset > 0 )
1241     {
1242         const int64_t i_position = stream_Tell( p_demux->s );
1243
1244         HeaderINDX( p_demux );
1245
1246         if( stream_Seek( p_demux->s, i_position ) )
1247             return VLC_EGENERIC;
1248     }
1249     return VLC_SUCCESS;
1250 }
1251
1252 static void CodecMetaRead( demux_t *p_demux, const uint8_t **pp_data, int *pi_data )
1253 {
1254     demux_sys_t *p_sys = p_demux->p_sys;
1255
1256     /* Title */
1257     p_sys->psz_title = MemoryReadString1( pp_data, pi_data );
1258     if( p_sys->psz_title )
1259         msg_Dbg( p_demux, "    - title=`%s'", p_sys->psz_title );
1260
1261     /* Authors */
1262     p_sys->psz_artist = MemoryReadString1( pp_data, pi_data );
1263     if( p_sys->psz_artist )
1264         msg_Dbg( p_demux, "    - artist=`%s'", p_sys->psz_artist );
1265
1266     /* Copyright */
1267     p_sys->psz_copyright = MemoryReadString1( pp_data, pi_data );
1268     if( p_sys->psz_copyright )
1269         msg_Dbg( p_demux, "    - copyright=`%s'", p_sys->psz_copyright );
1270
1271     /* Comment */
1272     p_sys->psz_description = MemoryReadString1( pp_data, pi_data );
1273     if( p_sys->psz_description )
1274         msg_Dbg( p_demux, "    - Comment=`%s'", p_sys->psz_description );
1275 }
1276
1277 static int CodecVideoParse( demux_t *p_demux, int i_tk_id, const uint8_t *p_data, int i_data )
1278 {
1279     demux_sys_t *p_sys = p_demux->p_sys;
1280
1281     if( i_data < 34 )
1282         return VLC_EGENERIC;
1283
1284     /* */
1285     es_format_t fmt;
1286     es_format_Init( &fmt, VIDEO_ES,
1287                     VLC_FOURCC( p_data[8], p_data[9], p_data[10], p_data[11] ) );
1288     fmt.video.i_width = GetWBE( &p_data[12] );
1289     fmt.video.i_height= GetWBE( &p_data[14] );
1290     fmt.video.i_frame_rate = (GetWBE( &p_data[22] ) << 16) | GetWBE( &p_data[24] );
1291     fmt.video.i_frame_rate_base = 1 << 16;
1292
1293     fmt.i_extra = 8;
1294     fmt.p_extra = malloc( 8 );
1295     if( !fmt.p_extra )
1296         return VLC_ENOMEM;
1297
1298     memcpy( fmt.p_extra, &p_data[26], 8 );
1299
1300     //msg_Dbg( p_demux, "    - video 0x%08x 0x%08x", dw0, dw1 );
1301
1302     /* */
1303     switch( GetDWBE( &p_data[30] ) )
1304     {
1305     case 0x10003000:
1306     case 0x10003001:
1307         fmt.i_codec = VLC_FOURCC( 'R','V','1','3' );
1308         break;
1309     case 0x20001000:
1310     case 0x20100001:
1311     case 0x20200002:
1312     case 0x20201002:
1313         fmt.i_codec = VLC_FOURCC( 'R','V','2','0' );
1314         break;
1315     case 0x30202002:
1316         fmt.i_codec = VLC_FOURCC( 'R','V','3','0' );
1317         break;
1318     case 0x40000000:
1319         fmt.i_codec = VLC_FOURCC( 'R','V','4','0' );
1320         break;
1321     }
1322     msg_Dbg( p_demux, "    - video %4.4s %dx%d - %8.8x",
1323              (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height, GetDWBE( &p_data[30] ) );
1324
1325     real_track_t *tk = malloc( sizeof( *tk ) );
1326     if( !tk )
1327     {
1328         es_format_Clean( &fmt );
1329         return VLC_ENOMEM;
1330     }
1331     tk->i_out_subpacket = 0;
1332     tk->i_subpacket = 0;
1333     tk->i_subpackets = 0;
1334     tk->p_subpackets = NULL;
1335     tk->p_subpackets_timecode = NULL;
1336     tk->i_id = i_tk_id;
1337     tk->fmt = fmt;
1338     tk->i_frame_num = -1;
1339     tk->i_frame_size = 0;
1340     tk->p_frame = NULL;
1341     tk->i_last_dts = 0;
1342     tk->p_es = es_out_Add( p_demux->out, &fmt );
1343
1344     TAB_APPEND( p_sys->i_track, p_sys->track, tk );
1345     return VLC_SUCCESS;
1346 }
1347 static int CodecAudioParse( demux_t *p_demux, int i_tk_id, const uint8_t *p_data, int i_data )
1348 {
1349     demux_sys_t *p_sys = p_demux->p_sys;
1350     es_format_t fmt;
1351
1352     if( i_data < 6 )
1353         return VLC_EGENERIC;
1354     
1355     int i_flavor = 0;
1356     int i_coded_frame_size = 0;
1357     int i_subpacket_h = 0;
1358     int i_frame_size = 0;
1359     int i_subpacket_size = 0;
1360     char p_genr[4];
1361     int i_version = GetWBE( &p_data[4] );
1362     int i_extra_codec = 0;
1363
1364     msg_Dbg( p_demux, "    - audio version=%d", i_version );
1365
1366     es_format_Init( &fmt, AUDIO_ES, 0 );
1367
1368     RVoid( &p_data, &i_data, 6 );                         /* 4 + version */
1369     if( i_version == 3 ) /* RMF version 3 or .ra version 3 */
1370     {
1371         RVoid( &p_data, &i_data, 2 + 10 + 4 );
1372
1373         /* Meta Datas */
1374         CodecMetaRead( p_demux, &p_data, &i_data );
1375
1376         RVoid( &p_data, &i_data, 1 + 1 );
1377         if( i_data >= 4 )
1378             memcpy( &fmt.i_codec, p_data, 4 );
1379         RVoid( &p_data, &i_data, 4 );
1380
1381         fmt.audio.i_channels = 1;      /* This is always the case in rm3 */
1382         fmt.audio.i_rate = 8000;
1383
1384         msg_Dbg( p_demux, "    - audio codec=%4.4s channels=%d rate=%dHz",
1385              (char*)&fmt.i_codec, fmt.audio.i_channels, fmt.audio.i_rate );
1386     }
1387     else  /* RMF version 4/5 or .ra version 4 */
1388     {
1389         RVoid( &p_data, &i_data, 2 + 4 + 4 + 2 + 4 );
1390         i_flavor = R16( &p_data, &i_data );
1391         i_coded_frame_size = R32( &p_data, &i_data );
1392         RVoid( &p_data, &i_data, 4 + 4 + 4 );
1393         i_subpacket_h = R16( &p_data, &i_data );
1394         i_frame_size = R16( &p_data, &i_data );
1395         i_subpacket_size = R16( &p_data, &i_data );
1396         if( !i_frame_size || !i_coded_frame_size )
1397             return VLC_EGENERIC;
1398
1399         RVoid( &p_data, &i_data, 2 + (i_version == 5 ? 6 : 0 ) );
1400
1401         fmt.audio.i_rate = R16( &p_data, &i_data );
1402         RVoid( &p_data, &i_data, 2 );
1403         fmt.audio.i_bitspersample = R16( &p_data, &i_data );
1404         fmt.audio.i_channels = R16( &p_data, &i_data );
1405         fmt.audio.i_blockalign = i_frame_size;
1406
1407         if( i_version == 5 )
1408         {
1409             if( i_data >= 8 )
1410             {
1411                 memcpy( p_genr,       &p_data[0], 4 );
1412                 memcpy( &fmt.i_codec, &p_data[4], 4 );
1413             }
1414             RVoid( &p_data, &i_data, 8 );
1415         }
1416         else /* version 4 */
1417         {
1418             if( i_data > 0 )
1419                 RVoid( &p_data, &i_data, 1 + *p_data );
1420             if( i_data >= 1 + 4 )
1421                 memcpy( &fmt.i_codec, &p_data[1], 4 );
1422             if( i_data > 0 )
1423                 RVoid( &p_data, &i_data, 1 + *p_data );
1424         }
1425
1426         msg_Dbg( p_demux, "    - audio codec=%4.4s channels=%d rate=%dHz",
1427              (char*)&fmt.i_codec, fmt.audio.i_channels, fmt.audio.i_rate );
1428
1429         RVoid( &p_data, &i_data, 3 );
1430
1431         if( p_sys->b_real_audio )
1432         {
1433             CodecMetaRead( p_demux, &p_data, &i_data );
1434         }
1435         else
1436         {
1437             if( i_version == 5 )
1438                 RVoid( &p_data, &i_data, 1 );
1439             i_extra_codec = R32( &p_data, &i_data );
1440         }
1441     }
1442
1443     switch( fmt.i_codec )
1444     {
1445     case VLC_FOURCC('l','p','c','J'):
1446         fmt.i_codec = VLC_FOURCC( '1','4','_','4' );
1447     case VLC_FOURCC('1','4','_','4'):
1448         fmt.audio.i_blockalign = 0x14 ;
1449         break;
1450
1451     case VLC_FOURCC('2','8','_','8'):
1452         fmt.audio.i_blockalign = i_coded_frame_size;
1453         break;
1454
1455     case VLC_FOURCC( 'd','n','e','t' ):
1456         fmt.i_codec = VLC_FOURCC( 'a','5','2',' ' );
1457         break;
1458
1459     case VLC_FOURCC( 'r','a','a','c' ):
1460     case VLC_FOURCC( 'r','a','c','p' ):
1461         fmt.i_codec = VLC_FOURCC( 'm','p','4','a' );
1462
1463         if( i_extra_codec > 0 )
1464         {
1465             i_extra_codec--;
1466             RVoid( &p_data, &i_data, 1 );
1467         }
1468         if( i_extra_codec > 0 )
1469         {
1470             fmt.p_extra = malloc( i_extra_codec );
1471             if( !fmt.p_extra || i_extra_codec > i_data )
1472                 return VLC_ENOMEM;
1473
1474             fmt.i_extra = i_extra_codec;
1475             memcpy( fmt.p_extra, p_data, fmt.i_extra );
1476         }
1477         break;
1478
1479     case VLC_FOURCC('s','i','p','r'):
1480         fmt.audio.i_flavor = i_flavor;
1481     case VLC_FOURCC('c','o','o','k'):
1482     case VLC_FOURCC('a','t','r','c'):
1483         if( i_subpacket_size <= 0 )
1484         {
1485             es_format_Clean( &fmt );
1486             return VLC_EGENERIC;
1487         }
1488         if( !memcmp( p_genr, "genr", 4 ) )
1489             fmt.audio.i_blockalign = i_subpacket_size;
1490         else
1491             fmt.audio.i_blockalign = i_coded_frame_size;
1492
1493         if( i_extra_codec > 0 )
1494         {
1495             fmt.p_extra = malloc( i_extra_codec );
1496             if( !fmt.p_extra || i_extra_codec > i_data )
1497                 return VLC_ENOMEM;
1498
1499             fmt.i_extra = i_extra_codec;
1500             memcpy( fmt.p_extra, p_data, fmt.i_extra );
1501         }
1502
1503         break;
1504
1505     case VLC_FOURCC('r','a','l','f'):
1506         msg_Dbg( p_demux, "    - audio codec not supported=%4.4s",
1507                  (char*)&fmt.i_codec );
1508         break;
1509
1510     default:
1511         msg_Dbg( p_demux, "    - unknown audio codec=%4.4s",
1512                  (char*)&fmt.i_codec );
1513         break;
1514     }
1515     msg_Dbg( p_demux, "        - extra data=%d", fmt.i_extra );
1516
1517     /* */
1518     real_track_t *tk = malloc( sizeof( *tk ) );
1519     if( !tk )
1520     {
1521         es_format_Clean( &fmt );
1522         return VLC_ENOMEM;
1523     }
1524     tk->i_id = i_tk_id;
1525     tk->fmt = fmt;
1526     tk->i_frame_size = 0;
1527     tk->p_frame = NULL;
1528
1529     tk->i_subpacket_h = i_subpacket_h;
1530     tk->i_subpacket_size = i_subpacket_size;
1531     tk->i_coded_frame_size = i_coded_frame_size;
1532     tk->i_frame_size = i_frame_size;
1533
1534     tk->i_out_subpacket = 0;
1535     tk->i_subpacket = 0;
1536     tk->i_subpackets = 0;
1537     tk->p_subpackets = NULL;
1538     tk->p_subpackets_timecode = NULL;
1539     if( fmt.i_codec == VLC_FOURCC('c','o','o','k') ||
1540         fmt.i_codec == VLC_FOURCC('a','t','r','c') ||
1541         fmt.i_codec == VLC_FOURCC('s','i','p','r') )
1542     {
1543         tk->i_subpackets =
1544             i_subpacket_h * i_frame_size / tk->i_subpacket_size;
1545         tk->p_subpackets =
1546             calloc( tk->i_subpackets, sizeof(block_t *) );
1547         tk->p_subpackets_timecode =
1548             calloc( tk->i_subpackets , sizeof( int64_t ) );
1549     }
1550     else if( fmt.i_codec == VLC_FOURCC('2','8','_','8') )
1551     {
1552         tk->i_subpackets =
1553             i_subpacket_h * i_frame_size / tk->i_coded_frame_size;
1554         tk->p_subpackets =
1555             calloc( tk->i_subpackets, sizeof(block_t *) );
1556         tk->p_subpackets_timecode =
1557             calloc( tk->i_subpackets , sizeof( int64_t ) );
1558     }
1559
1560     /* Check if the calloc went correctly */
1561     if( tk->i_subpacket > 0 && ( !tk->p_subpackets || !tk->p_subpackets_timecode ) )
1562     {
1563         free( tk->p_subpackets_timecode );
1564         free( tk->p_subpackets );
1565         free( tk );
1566         msg_Err( p_demux, "Can't alloc subpacket" );
1567         return VLC_EGENERIC;
1568     }
1569
1570     tk->i_last_dts = 0;
1571     tk->p_es = es_out_Add( p_demux->out, &fmt );
1572
1573     TAB_APPEND( p_sys->i_track, p_sys->track, tk );
1574
1575     return VLC_SUCCESS;
1576 }
1577
1578
1579 static int CodecParse( demux_t *p_demux, int i_len, int i_num )
1580 {
1581     const uint8_t *p_peek;
1582
1583     msg_Dbg( p_demux, "    - specific data len=%d", i_len );
1584     if( stream_Peek( p_demux->s, &p_peek, i_len ) < i_len )
1585         return VLC_EGENERIC;
1586
1587     if( i_len >= 8 && !memcmp( &p_peek[4], "VIDO", 4 ) )
1588     {
1589         return CodecVideoParse( p_demux, i_num, p_peek, i_len );
1590     }
1591     else if( i_len >= 4 && !memcmp( &p_peek[0], ".ra\xfd", 4 ) )
1592     {
1593         return CodecAudioParse( p_demux, i_num, p_peek, i_len );
1594     }
1595     return VLC_SUCCESS;
1596 }
1597
1598 /*****************************************************************************
1599  * Helpers: memory buffer fct.
1600  *****************************************************************************/
1601 static void RVoid( const uint8_t **pp_data, int *pi_data, int i_size )
1602 {
1603     if( i_size > *pi_data )
1604         i_size = *pi_data;
1605
1606     *pp_data += i_size;
1607     *pi_data -= i_size;
1608 }
1609 #define RX(name, type, size, code ) \
1610 static type name( const uint8_t **pp_data, int *pi_data ) { \
1611     if( *pi_data < (size) )          \
1612         return 0;                    \
1613     type v = code;                   \
1614     RVoid( pp_data, pi_data, size ); \
1615     return v;                        \
1616 }
1617 RX(R8,  uint8_t, 1, **pp_data )
1618 RX(R16, uint16_t, 2, GetWBE( *pp_data ) )
1619 RX(R32, uint32_t, 4, GetDWBE( *pp_data ) )
1620 static int RLength( const uint8_t **pp_data, int *pi_data )
1621 {
1622     const int v0 = R16( pp_data, pi_data ) & 0x7FFF;
1623     if( v0 >= 0x4000 )
1624         return v0 - 0x4000;
1625     return (v0 << 16) | R16( pp_data, pi_data );
1626 }
1627
1628