]> git.sesse.net Git - vlc/blob - modules/demux/real.c
Don't write two times when only one is needed.
[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             i64 = stream_Size( p_demux->s );
383             if( i64 > 0 )
384                 *pf = (double)1.0*stream_Tell( p_demux->s ) / (double)i64;
385             else
386                 *pf = 0.0;
387             return VLC_SUCCESS;
388
389         case DEMUX_GET_TIME:
390             pi64 = (int64_t*)va_arg( args, int64_t * );
391
392             if( p_sys->i_our_duration > 0 )
393             {
394                 *pi64 = p_sys->i_pcr;
395                 return VLC_SUCCESS;
396             }
397
398             /* same as GET_POSTION */
399             i64 = stream_Size( p_demux->s );
400             if( p_sys->i_our_duration > 0 && i64 > 0 )
401             {
402                 *pi64 = (int64_t)( 1000.0 * p_sys->i_our_duration * stream_Tell( p_demux->s ) / i64 );
403                 return VLC_SUCCESS;
404             }
405
406             *pi64 = 0;
407             return VLC_EGENERIC;
408
409         case DEMUX_SET_POSITION:
410             f = (double) va_arg( args, double );
411             i64 = (int64_t) ( stream_Size( p_demux->s ) * f );
412
413             if( !p_sys->p_index && i64 != 0 )
414             {
415                 /* TODO seek */
416                 msg_Err( p_demux,"Seek No Index Real File failed!" );
417                 return VLC_EGENERIC; // no index!
418             }
419             else if( i64 == 0 )
420             {
421                 /* it is a rtsp stream , it is specials in access/rtsp/... */
422                 msg_Dbg(p_demux, "Seek in real rtsp stream!");
423                 p_sys->i_pcr = INT64_C(1000) * ( p_sys->i_our_duration * f  );
424                 p_sys->b_seek = true;
425                 return stream_Seek( p_demux->s, p_sys->i_pcr );
426             }
427             return ControlSeekByte( p_demux, i64 );
428
429         case DEMUX_SET_TIME:
430             if( !p_sys->p_index )
431                 return VLC_EGENERIC;
432
433             i64 = (int64_t) va_arg( args, int64_t );
434             return ControlSeekTime( p_demux, i64 );
435
436         case DEMUX_GET_LENGTH:
437             pi64 = (int64_t*)va_arg( args, int64_t * );
438  
439             if( p_sys->i_our_duration <= 0 )
440             {
441                 *pi64 = 0;
442                 return VLC_EGENERIC;
443             }
444
445             /* our stored duration is in ms, so... */
446             *pi64 = INT64_C(1000) * p_sys->i_our_duration;
447             return VLC_SUCCESS;
448
449         case DEMUX_GET_META:
450         {
451             vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* );
452
453             /* the core will crash if we provide NULL strings, so check
454              * every string first */
455             if( p_sys->psz_title )
456                 vlc_meta_SetTitle( p_meta, p_sys->psz_title );
457             if( p_sys->psz_artist )
458                 vlc_meta_SetArtist( p_meta, p_sys->psz_artist );
459             if( p_sys->psz_copyright )
460                 vlc_meta_SetCopyright( p_meta, p_sys->psz_copyright );
461             if( p_sys->psz_description )
462                 vlc_meta_SetDescription( p_meta, p_sys->psz_description );
463             return VLC_SUCCESS;
464         }
465
466         case DEMUX_GET_FPS:
467         default:
468             return VLC_EGENERIC;
469     }
470     return VLC_EGENERIC;
471 }
472
473 /*****************************************************************************
474  * Helpers: demux
475  *****************************************************************************/
476 static void CheckPcr( demux_t *p_demux, real_track_t *tk, mtime_t i_dts )
477 {
478     demux_sys_t *p_sys = p_demux->p_sys;
479
480     if( i_dts > 0 )
481         tk->i_last_dts = i_dts;
482
483     if( p_sys->i_pcr > 0 || i_dts <= 0 )
484         return;
485
486     p_sys->i_pcr = i_dts;
487     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr );
488 }
489
490 static void DemuxVideo( demux_t *p_demux, real_track_t *tk, mtime_t i_dts, unsigned i_flags )
491 {
492     demux_sys_t *p_sys = p_demux->p_sys;
493
494     const uint8_t *p_data = p_sys->buffer;
495     int     i_data = p_sys->i_buffer;
496
497     while( i_data > 1 )
498     {
499         uint8_t i_hdr = R8( &p_data, &i_data );
500         uint8_t i_type = i_hdr >> 6;
501
502         uint8_t i_seq;
503         int i_len;
504         int i_pos;
505         int i_frame_num;
506
507         if( i_type == 1 )
508         {
509             R8( &p_data, &i_data );
510             i_len = i_data;
511             i_pos = 0;
512             i_frame_num = -1;
513             i_seq = 1;
514             i_hdr &= ~0x3f;
515         }
516         else if( i_type == 3 )
517         {
518             i_len = RLength( &p_data, &i_data );
519             i_pos = RLength( &p_data, &i_data );
520             i_frame_num = R8( &p_data, &i_data );
521             i_seq = 1;
522             i_hdr &= ~0x3f;
523         }
524         else
525         {
526             assert( i_type == 0 || i_type == 2 );
527             i_seq = R8( &p_data, &i_data );
528             i_len = RLength( &p_data, &i_data );
529
530             i_pos = RLength( &p_data, &i_data );
531             i_frame_num = R8( &p_data, &i_data );
532         }
533
534         if( (i_seq & 0x7f) == 1 || tk->i_frame_num != i_frame_num )
535         {
536             tk->i_frame_slice = 0;
537             tk->i_frame_slice_count = 2 * (i_hdr & 0x3f) + 1;
538             tk->i_frame_pos = 2*4 * tk->i_frame_slice_count + 1;
539             tk->i_frame_size = i_len + 2*4 * tk->i_frame_slice_count + 1;
540             tk->i_frame_num = i_frame_num;
541
542             if( tk->p_frame )
543                 block_Release( tk->p_frame );
544
545             tk->p_frame = block_New( p_demux, tk->i_frame_size );
546             if( !tk->p_frame )
547             {
548                 tk->i_frame_size = 0;
549                 return;
550             }
551
552             tk->p_frame->i_dts = i_dts;
553             tk->p_frame->i_pts = 0;
554             if( i_flags & 0x02 )
555                 tk->p_frame->i_flags |= BLOCK_FLAG_TYPE_I;
556
557             i_dts = 0;
558         }
559
560         int i_frame_data;
561         if( i_type == 3 )
562         {
563             i_frame_data = i_len;
564         }
565         else
566         {
567             i_frame_data = i_data;
568             if( i_type == 2 && i_frame_data > i_pos )
569                 i_frame_data = i_pos;
570         }
571         if( i_frame_data > i_data )
572             break;
573
574         /* */
575         tk->i_frame_slice++;
576         if( tk->i_frame_slice > tk->i_frame_slice_count || !tk->p_frame )
577             break;
578
579         /* */
580         SetDWLE( &tk->p_frame->p_buffer[2*4*(tk->i_frame_slice-1) + 1 + 0], 1 );
581         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) );
582
583         if( tk->i_frame_pos + i_frame_data > tk->i_frame_size )
584             break;
585
586         memcpy( &tk->p_frame->p_buffer[tk->i_frame_pos], p_data, i_frame_data );
587         RVoid( &p_data, &i_data, i_frame_data );
588         tk->i_frame_pos += i_frame_data;
589
590         if( i_type != 0 || tk->i_frame_pos >= tk->i_frame_size )
591         {
592             /* Fix the buffer once the real number of slice is known */
593             tk->p_frame->p_buffer[0] = tk->i_frame_slice - 1;
594             tk->p_frame->i_buffer = tk->i_frame_pos - 2*4*( tk->i_frame_slice_count - tk->i_frame_slice );
595
596             memmove( &tk->p_frame->p_buffer[1+2*4*tk->i_frame_slice      ],
597                      &tk->p_frame->p_buffer[1+2*4*tk->i_frame_slice_count],
598                      tk->i_frame_pos - (2*4*tk->i_frame_slice_count + 1) );
599
600             /* Send it */
601             CheckPcr( p_demux, tk, tk->p_frame->i_dts );
602             es_out_Send( p_demux->out, tk->p_es, tk->p_frame );
603
604             tk->i_frame_size = 0;
605             tk->p_frame = NULL;
606         }
607     }
608 }
609
610 static void DemuxAudioMethod1( demux_t *p_demux, real_track_t *tk, mtime_t i_pts, unsigned int i_flags )
611 {
612     demux_sys_t *p_sys = p_demux->p_sys;
613     uint8_t *p_buf = p_sys->buffer;
614
615     /* Sanity check */
616     if( (i_flags & 2) || p_sys->b_seek )
617     {
618         tk->i_subpacket = 0;
619         tk->i_out_subpacket = 0;
620         p_sys->b_seek = false;
621     }
622
623     if( tk->fmt.i_codec == VLC_FOURCC( 'c', 'o', 'o', 'k' ) ||
624         tk->fmt.i_codec == VLC_FOURCC( 'a', 't', 'r', 'c' ) ||
625         tk->fmt.i_codec == VLC_FOURCC( 's', 'i', 'p', 'r' ) )
626     {
627         const int i_num = tk->i_frame_size / tk->i_subpacket_size;
628         const int y = tk->i_subpacket / ( tk->i_frame_size / tk->i_subpacket_size );
629
630         for( int i = 0; i < i_num; i++ )
631         {
632             block_t *p_block = block_New( p_demux, tk->i_subpacket_size );
633             if( !p_block )
634                 return;
635             if( &p_buf[tk->i_subpacket_size] > &p_sys->buffer[p_sys->i_buffer] )
636                 return;
637
638             memcpy( p_block->p_buffer, p_buf, tk->i_subpacket_size );
639             p_block->i_dts =
640             p_block->i_pts = 0;
641
642             p_buf += tk->i_subpacket_size;
643
644             int i_index = tk->i_subpacket_h * i +
645                           ((tk->i_subpacket_h + 1) / 2) * (y&1) + (y>>1);
646
647             if( tk->p_subpackets[i_index] != NULL )
648             {
649                 msg_Dbg(p_demux, "p_subpackets[ %d ] not null!",  i_index );
650                 block_Release( tk->p_subpackets[i_index] );
651             }
652
653             tk->p_subpackets[i_index] = p_block;
654             if( tk->i_subpacket == 0 )
655                 tk->p_subpackets_timecode[0] = i_pts;
656             tk->i_subpacket++;
657         }
658     }
659     else
660     {
661         const int y = tk->i_subpacket / (tk->i_subpacket_h / 2);
662         assert( tk->fmt.i_codec == VLC_FOURCC( '2', '8', '_', '8' ) );
663
664         for( int i = 0; i < tk->i_subpacket_h / 2; i++ )
665         {
666             block_t *p_block = block_New( p_demux, tk->i_coded_frame_size);
667             if( !p_block )
668                 return;
669             if( &p_buf[tk->i_coded_frame_size] > &p_sys->buffer[p_sys->i_buffer] )
670                 return;
671
672             int i_index = (i * 2 * tk->i_frame_size / tk->i_coded_frame_size) + y;
673
674             memcpy( p_block->p_buffer, p_buf, tk->i_coded_frame_size );
675             p_block->i_dts =
676             p_block->i_pts = i_index == 0 ? i_pts : 0;
677
678             p_buf += tk->i_coded_frame_size;
679
680             if( tk->p_subpackets[i_index] != NULL )
681             {
682                 msg_Dbg(p_demux, "p_subpackets[ %d ] not null!",  i_index );
683                 block_Release( tk->p_subpackets[i_index] );
684             }
685
686             tk->p_subpackets[i_index] = p_block;
687             tk->i_subpacket++;
688         }
689     }
690
691     while( tk->i_out_subpacket != tk->i_subpackets &&
692            tk->p_subpackets[tk->i_out_subpacket] )
693     {
694         block_t *p_block = tk->p_subpackets[tk->i_out_subpacket];
695         tk->p_subpackets[tk->i_out_subpacket] = NULL;
696
697         if( tk->p_subpackets_timecode[tk->i_out_subpacket] )
698         {
699             p_block->i_dts =
700             p_block->i_pts = tk->p_subpackets_timecode[tk->i_out_subpacket];
701
702             tk->p_subpackets_timecode[tk->i_out_subpacket] = 0;
703         }
704         tk->i_out_subpacket++;
705
706         CheckPcr( p_demux, tk, p_block->i_pts );
707         es_out_Send( p_demux->out, tk->p_es, p_block );
708     }
709
710     if( tk->i_subpacket == tk->i_subpackets &&
711         tk->i_out_subpacket != tk->i_subpackets )
712     {
713         msg_Warn( p_demux, "i_subpacket != i_out_subpacket, "
714                   "this shouldn't happen" );
715     }
716
717     if( tk->i_subpacket == tk->i_subpackets )
718     {
719         tk->i_subpacket = 0;
720         tk->i_out_subpacket = 0;
721     }
722 }
723 static void DemuxAudioMethod2( demux_t *p_demux, real_track_t *tk, mtime_t i_pts )
724 {
725     demux_sys_t *p_sys = p_demux->p_sys;
726
727     if( p_sys->i_buffer < 2 )
728         return;
729
730     int i_sub = (p_sys->buffer[1] >> 4)&0x0f;
731     if( p_sys->i_buffer < 2+2*i_sub )
732         return;
733
734     uint8_t *p_sub = &p_sys->buffer[2+2*i_sub];
735
736     for( int i = 0; i < i_sub; i++ )
737     {
738         const int i_sub_size = GetWBE( &p_sys->buffer[2+i*2] );
739         block_t *p_block = block_New( p_demux, i_sub_size );
740         if( !p_block )
741             break;
742
743         if( &p_sub[i_sub_size] > &p_sys->buffer[p_sys->i_buffer] )
744             break;
745
746         memcpy( p_block->p_buffer, p_sub, i_sub_size );
747         p_sub += i_sub_size;
748
749         p_block->i_dts =
750         p_block->i_pts = ( i == 0 ? i_pts : 0 );
751
752         CheckPcr( p_demux, tk, p_block->i_pts );
753         es_out_Send( p_demux->out, tk->p_es, p_block );
754     }
755 }
756 static void DemuxAudioMethod3( demux_t *p_demux, real_track_t *tk, mtime_t i_pts )
757 {
758     demux_sys_t *p_sys = p_demux->p_sys;
759
760     if( p_sys->i_buffer <= 0 )
761         return;
762
763     block_t *p_block = block_New( p_demux, p_sys->i_buffer );
764     if( !p_block )
765         return;
766
767     if( tk->fmt.i_codec == VLC_FOURCC( 'a', '5', '2', ' ' ) )
768     {
769         uint8_t *p_src = p_sys->buffer;
770         uint8_t *p_dst = p_block->p_buffer;
771
772         /* byte swap data */
773         while( p_dst < &p_block->p_buffer[p_sys->i_buffer - 1])
774         {
775             *p_dst++ = p_src[1];
776             *p_dst++ = p_src[0];
777
778             p_src += 2;
779         }
780     }
781     else
782     {
783         memcpy( p_block->p_buffer, p_sys->buffer, p_sys->i_buffer );
784     }
785     p_block->i_dts =
786     p_block->i_pts = i_pts;
787
788     CheckPcr( p_demux, tk, p_block->i_pts );
789     es_out_Send( p_demux->out, tk->p_es, p_block );
790 }
791
792 static void DemuxAudio( demux_t *p_demux, real_track_t *tk, mtime_t i_pts, unsigned i_flags )
793 {
794     switch( tk->fmt.i_codec )
795     {
796     case VLC_FOURCC( 'c', 'o', 'o', 'k' ):
797     case VLC_FOURCC( 'a', 't', 'r', 'c' ):
798     case VLC_FOURCC( 's', 'i', 'p', 'r' ):
799     case VLC_FOURCC( '2', '8', '_', '8' ):
800         DemuxAudioMethod1( p_demux, tk, i_pts, i_flags );
801         break;
802     case VLC_FOURCC( 'm','p','4','a' ):
803         DemuxAudioMethod2( p_demux, tk, i_pts );
804         break;
805     default:
806         DemuxAudioMethod3( p_demux, tk, i_pts );
807         break;
808     }
809 }
810
811 /*****************************************************************************
812  * Helpers: seek/control
813  *****************************************************************************/
814 static int ControlGoToIndex( demux_t *p_demux, real_index_t *p_index )
815 {
816     demux_sys_t *p_sys = p_demux->p_sys;
817
818     p_sys->b_seek = true;
819     p_sys->i_pcr = INT64_C(1000) * p_index->i_time_offset;
820     for( int i = 0; i < p_sys->i_track; i++ )
821         p_sys->track[i]->i_last_dts = 0;
822     return stream_Seek( p_demux->s, p_index->i_file_offset );
823 }
824 static int ControlSeekTime( demux_t *p_demux, mtime_t i_time )
825 {
826     demux_sys_t *p_sys = p_demux->p_sys;
827     real_index_t *p_index = p_sys->p_index;
828
829     while( p_index->i_file_offset != 0 )
830     {
831         if( p_index->i_time_offset * INT64_C(1000) > i_time )
832         {
833             if( p_index != p_sys->p_index )
834                 p_index--;
835             break;
836         }
837         p_index++;
838     }
839     if( p_index->i_file_offset == 0 )
840         return VLC_EGENERIC;
841     return ControlGoToIndex( p_demux, p_index );
842 }
843 static int ControlSeekByte( demux_t *p_demux, int64_t i_bytes )
844 {
845     demux_sys_t *p_sys = p_demux->p_sys;
846     real_index_t *p_index = p_sys->p_index;
847
848     while( p_index->i_file_offset != 0 )
849     {
850         if( p_index->i_file_offset > i_bytes )
851         {
852             if( p_index != p_sys->p_index )
853                 p_index--;
854             break;
855         }
856         p_index++;
857     }
858     if( p_index->i_file_offset == 0 )
859         return VLC_EGENERIC;
860     return ControlGoToIndex( p_demux, p_index );
861 }
862
863 /*****************************************************************************
864  * Helpers: header reading
865  *****************************************************************************/
866
867 /**
868  * This function will read a pascal string with size stored in 2 bytes from
869  * a stream_t.
870  *
871  * FIXME what is the right charset ?
872  */
873 static char *StreamReadString2( stream_t *s )
874 {
875     uint8_t p_tmp[2];
876
877     if( stream_Read( s, p_tmp, 2 ) < 2 )
878         return NULL;
879
880     const int i_length = GetWBE( p_tmp );
881     if( i_length <= 0 )
882         return NULL;
883
884     char *psz_string = calloc( 1, i_length + 1 );
885
886     stream_Read( s, psz_string, i_length ); /* Valid even if !psz_string */
887
888     if( psz_string )
889         EnsureUTF8( psz_string );
890     return psz_string;
891 }
892
893 /**
894  * This function will read a pascal string with size stored in 1 byte from a
895  * memory buffer.
896  *
897  * FIXME what is the right charset ?
898  */
899 static char *MemoryReadString1( const uint8_t **pp_data, int *pi_data )
900 {
901     const uint8_t *p_data = *pp_data;
902     int           i_data = *pi_data;
903
904     char *psz_string = NULL;
905
906     if( i_data < 1 )
907         goto exit;
908
909     int i_length = *p_data++; i_data--;
910     if( i_length > i_data )
911         i_length = i_data;
912
913     if( i_length > 0 )
914     {
915         psz_string = strndup( (const char*)p_data, i_length );
916         if( psz_string )
917             EnsureUTF8( psz_string );
918
919         p_data += i_length;
920         i_data -= i_length;
921     }
922
923 exit:
924     *pp_data = p_data;
925     *pi_data = i_data;
926     return psz_string;
927 }
928
929 /**
930  * This function parses(skip) the .RMF identification chunk.
931  */
932 static int HeaderRMF( demux_t *p_demux )
933 {
934     uint8_t p_buffer[8];
935
936     if( stream_Read( p_demux->s, p_buffer, 8 ) < 8 )
937         return VLC_EGENERIC;
938
939     msg_Dbg( p_demux, "    - file version=0x%x num headers=%d",
940              GetDWBE( &p_buffer[0] ), GetDWBE( &p_buffer[4] ) );
941     return VLC_SUCCESS;
942 }
943 /**
944  * This function parses the PROP properties chunk.
945  */
946 static int HeaderPROP( demux_t *p_demux )
947 {
948     demux_sys_t *p_sys = p_demux->p_sys;
949
950     uint8_t p_buffer[40];
951     int i_flags;
952
953     if( stream_Read( p_demux->s, p_buffer, 40 ) < 40 )
954         return VLC_EGENERIC;
955
956     msg_Dbg( p_demux, "    - max bitrate=%d avg bitrate=%d",
957              GetDWBE(&p_buffer[0]), GetDWBE(&p_buffer[4]) );
958     msg_Dbg( p_demux, "    - max packet size=%d avg bitrate=%d",
959              GetDWBE(&p_buffer[8]), GetDWBE(&p_buffer[12]) );
960     msg_Dbg( p_demux, "    - packets count=%d", GetDWBE(&p_buffer[16]) );
961     msg_Dbg( p_demux, "    - duration=%d ms", GetDWBE(&p_buffer[20]) );
962     msg_Dbg( p_demux, "    - preroll=%d ms", GetDWBE(&p_buffer[24]) );
963     msg_Dbg( p_demux, "    - index offset=%d", GetDWBE(&p_buffer[28]) );
964     msg_Dbg( p_demux, "    - data offset=%d", GetDWBE(&p_buffer[32]) );
965     msg_Dbg( p_demux, "    - num streams=%d", GetWBE(&p_buffer[36]) );
966
967     /* set the duration for export in control */
968     p_sys->i_our_duration = GetDWBE(&p_buffer[20]);
969
970     p_sys->i_index_offset = GetDWBE(&p_buffer[28]);
971
972     i_flags = GetWBE(&p_buffer[38]);
973     msg_Dbg( p_demux, "    - flags=0x%x %s%s%s",
974              i_flags,
975              i_flags&0x0001 ? "PN_SAVE_ENABLED " : "",
976              i_flags&0x0002 ? "PN_PERFECT_PLAY_ENABLED " : "",
977              i_flags&0x0004 ? "PN_LIVE_BROADCAST" : "" );
978
979     return VLC_SUCCESS;
980 }
981 /**
982  * This functions parses the CONT commentairs chunk.
983  */
984 static int HeaderCONT( demux_t *p_demux )
985 {
986     demux_sys_t *p_sys = p_demux->p_sys;
987
988     /* */
989     p_sys->psz_title = StreamReadString2( p_demux->s );
990     if( p_sys->psz_title )
991         msg_Dbg( p_demux, "    - title=`%s'", p_sys->psz_title );
992
993     /* */
994     p_sys->psz_artist = StreamReadString2( p_demux->s );
995     if( p_sys->psz_artist )
996         msg_Dbg( p_demux, "    - artist=`%s'", p_sys->psz_artist );
997
998     /* */
999     p_sys->psz_copyright = StreamReadString2( p_demux->s );
1000     if( p_sys->psz_copyright )
1001         msg_Dbg( p_demux, "    - copyright=`%s'", p_sys->psz_copyright );
1002
1003     /* */
1004     p_sys->psz_description = StreamReadString2( p_demux->s );
1005     if( p_sys->psz_description )
1006         msg_Dbg( p_demux, "    - comment=`%s'", p_sys->psz_description );
1007
1008     return VLC_SUCCESS;
1009 }
1010 /**
1011  * This function parses the MDPR (Media properties) chunk.
1012  */
1013 static int HeaderMDPR( demux_t *p_demux )
1014 {
1015     uint8_t p_buffer[30];
1016
1017     if( stream_Read( p_demux->s, p_buffer, 30 ) < 30 )
1018         return VLC_EGENERIC;
1019
1020     const int i_num = GetWBE( &p_buffer[0] );
1021     msg_Dbg( p_demux, "    - id=0x%x", i_num );
1022     msg_Dbg( p_demux, "    - max bitrate=%d avg bitrate=%d",
1023              GetDWBE(&p_buffer[2]), GetDWBE(&p_buffer[6]) );
1024     msg_Dbg( p_demux, "    - max packet size=%d avg packet size=%d",
1025              GetDWBE(&p_buffer[10]), GetDWBE(&p_buffer[14]) );
1026     msg_Dbg( p_demux, "    - start time=%d", GetDWBE(&p_buffer[18]) );
1027     msg_Dbg( p_demux, "    - preroll=%d", GetDWBE(&p_buffer[22]) );
1028     msg_Dbg( p_demux, "    - duration=%d", GetDWBE(&p_buffer[26]) );
1029
1030     /* */
1031     const uint8_t *p_peek;
1032     int i_peek_org = stream_Peek( p_demux->s, &p_peek, 2 * 256 );
1033     int i_peek = i_peek_org;
1034     if( i_peek <= 0 )
1035         return VLC_EGENERIC;
1036
1037     char *psz_name = MemoryReadString1( &p_peek, &i_peek );
1038     if( psz_name )
1039     {
1040         msg_Dbg( p_demux, "    - name=`%s'", psz_name );
1041         free( psz_name );
1042     }
1043     char *psz_mime = MemoryReadString1( &p_peek, &i_peek );
1044     if( psz_mime )
1045     {
1046         msg_Dbg( p_demux, "    - mime=`%s'", psz_mime );
1047         free( psz_mime );
1048     }
1049     const int i_skip = i_peek_org - i_peek;
1050     if( i_skip > 0 && stream_Read( p_demux->s, NULL, i_skip ) < i_skip )
1051         return VLC_EGENERIC;
1052
1053     /* */
1054     if( stream_Read( p_demux->s, p_buffer, 4 ) < 4 )
1055         return VLC_EGENERIC;
1056
1057     const uint32_t i_size = GetDWBE( p_buffer );
1058     if( i_size > 0 )
1059     {
1060         CodecParse( p_demux, i_size, i_num );
1061         if( stream_Read( p_demux->s, NULL, i_size ) < i_size )
1062             return VLC_EGENERIC;
1063     }
1064     return VLC_SUCCESS;
1065 }
1066 /**
1067  * This function parses DATA chunk (it contains the actual movie data).
1068  */
1069 static int HeaderDATA( demux_t *p_demux, uint32_t i_size )
1070 {
1071     demux_sys_t *p_sys = p_demux->p_sys;
1072     uint8_t p_buffer[8];
1073
1074     if( stream_Read( p_demux->s, p_buffer, 8 ) < 8 )
1075         return VLC_EGENERIC;
1076
1077     p_sys->i_data_offset    = stream_Tell( p_demux->s ) - 10;
1078     p_sys->i_data_size      = i_size;
1079     p_sys->i_data_packets_count = GetDWBE( p_buffer );
1080     p_sys->i_data_packets   = 0;
1081     p_sys->i_data_offset_next = GetDWBE( &p_buffer[4] );
1082
1083     msg_Dbg( p_demux, "    - packets count=%d next=%u",
1084              p_sys->i_data_packets_count,
1085              (unsigned int)p_sys->i_data_offset_next );
1086     return VLC_SUCCESS;
1087 }
1088 /**
1089  * This function parses the INDX (movie index chunk).
1090  * It is optional but seeking without it is ... hard.
1091  */
1092 static void HeaderINDX( demux_t *p_demux )
1093 {
1094     demux_sys_t *p_sys = p_demux->p_sys;
1095     uint8_t       buffer[20];
1096
1097     uint32_t      i_index_count;
1098
1099     if( p_sys->i_index_offset == 0 )
1100         return;
1101
1102     stream_Seek( p_demux->s, p_sys->i_index_offset );
1103
1104     if( stream_Read( p_demux->s, buffer, 20 ) < 20 )
1105         return ;
1106
1107     const uint32_t i_id = VLC_FOURCC( buffer[0], buffer[1], buffer[2], buffer[3] );
1108     const uint32_t i_size      = GetDWBE( &buffer[4] );
1109     int i_version   = GetWBE( &buffer[8] );
1110
1111     msg_Dbg( p_demux, "Real index %4.4s size=%d version=%d",
1112                  (char*)&i_id, i_size, i_version );
1113
1114     if( (i_size < 20) && (i_id != VLC_FOURCC('I','N','D','X')) )
1115         return;
1116
1117     i_index_count = GetDWBE( &buffer[10] );
1118
1119     msg_Dbg( p_demux, "Real Index : num : %d ", i_index_count );
1120
1121     if( i_index_count >= ( 0xffffffff / sizeof(*p_sys->p_index) ) )
1122         return;
1123
1124     if( GetDWBE( &buffer[16] ) > 0 )
1125         msg_Dbg( p_demux, "Real Index: Does next index exist? %d ",
1126                         GetDWBE( &buffer[16] )  );
1127
1128     /* One extra entry is allocated (that MUST be set to 0) to identify the
1129      * end of the index.
1130      * TODO add a clean entry count (easier to build index on the fly) */
1131     p_sys->p_index = calloc( i_index_count + 1, sizeof(*p_sys->p_index) );
1132     if( !p_sys->p_index )
1133         return;
1134
1135     for( unsigned int i = 0; i < i_index_count; i++ )
1136     {
1137         uint8_t p_entry[14];
1138
1139         if( stream_Read( p_demux->s, p_entry, 14 ) < 14 )
1140             return ;
1141
1142         if( GetWBE( &p_entry[0] ) != 0 )
1143         {
1144             msg_Dbg( p_demux, "Real Index: invaild version of index entry %d ",
1145                               GetWBE( &p_entry[0] ) );
1146             return;
1147         }
1148
1149         real_index_t *p_idx = &p_sys->p_index[i];
1150         
1151         p_idx->i_time_offset = GetDWBE( &p_entry[2] );
1152         p_idx->i_file_offset = GetDWBE( &p_entry[6] );
1153         p_idx->i_frame_index = GetDWBE( &p_entry[10] );
1154
1155 #if 0
1156         msg_Dbg( p_demux,
1157                  "Real Index: time %"PRIu32" file %"PRIu32" frame %"PRIu32,
1158                  p_idx->i_time_offset,
1159                  p_idx->i_file_offset,
1160                  p_idx->i_frame_index );
1161 #endif
1162     }
1163 }
1164
1165
1166 /**
1167  * This function parses the complete RM headers and move the
1168  * stream pointer to the data to be read.
1169  */
1170 static int HeaderRead( demux_t *p_demux )
1171 {
1172     demux_sys_t *p_sys = p_demux->p_sys;
1173
1174     for( ;; )
1175     {
1176         const int64_t i_stream_position = stream_Tell( p_demux->s );
1177         uint8_t header[100];    /* FIXME */
1178
1179         /* Read the header */
1180         if( stream_Read( p_demux->s, header, 10 ) < 10 )
1181             return VLC_EGENERIC;
1182
1183         const uint32_t i_id = VLC_FOURCC( header[0], header[1],
1184                                           header[2], header[3] );
1185         const uint32_t i_size = GetDWBE( &header[4] );
1186         const int i_version = GetWBE( &header[8] );
1187
1188         msg_Dbg( p_demux, "object %4.4s size=%d version=%d",
1189                  (char*)&i_id, i_size, i_version );
1190
1191         /* */
1192         if( i_size < 10 && i_id != VLC_FOURCC('D','A','T','A') )
1193         {
1194             msg_Dbg( p_demux, "invalid size for object %4.4s", (char*)&i_id );
1195             return VLC_EGENERIC;
1196         }
1197
1198         int i_ret;
1199         switch( i_id )
1200         {
1201         case VLC_FOURCC('.','R','M','F'):
1202             i_ret = HeaderRMF( p_demux );
1203             break;
1204         case VLC_FOURCC('P','R','O','P'):
1205             i_ret = HeaderPROP( p_demux );
1206             break;
1207         case VLC_FOURCC('C','O','N','T'):
1208             i_ret = HeaderCONT( p_demux );
1209             break;
1210         case VLC_FOURCC('M','D','P','R'):
1211             i_ret = HeaderMDPR( p_demux );
1212             break;
1213         case VLC_FOURCC('D','A','T','A'):
1214             i_ret = HeaderDATA( p_demux, i_size );
1215             break;
1216         default:
1217             /* unknow header */
1218             msg_Dbg( p_demux, "unknown chunk" );
1219             i_ret = VLC_SUCCESS;
1220             break;
1221         }
1222         if( i_ret )
1223             return i_ret;
1224
1225         if( i_id == VLC_FOURCC('D','A','T','A') ) /* In this case, parsing is finished */
1226             break;
1227
1228         /* Skip unread data */
1229         const int64_t i_stream_current = stream_Tell( p_demux->s );
1230         const int64_t i_stream_skip = (i_stream_position + i_size) - i_stream_current;
1231
1232         if( i_stream_skip > 0 )
1233         {
1234             if( stream_Read( p_demux->s, NULL, i_stream_skip ) != i_stream_skip )
1235                 return VLC_EGENERIC;
1236         }
1237         else if( i_stream_skip < 0 )
1238         {
1239             return VLC_EGENERIC;
1240         }
1241     }
1242
1243     /* read index if possible */
1244     if( p_sys->i_index_offset > 0 )
1245     {
1246         const int64_t i_position = stream_Tell( p_demux->s );
1247
1248         HeaderINDX( p_demux );
1249
1250         if( stream_Seek( p_demux->s, i_position ) )
1251             return VLC_EGENERIC;
1252     }
1253     return VLC_SUCCESS;
1254 }
1255
1256 static void CodecMetaRead( demux_t *p_demux, const uint8_t **pp_data, int *pi_data )
1257 {
1258     demux_sys_t *p_sys = p_demux->p_sys;
1259
1260     /* Title */
1261     p_sys->psz_title = MemoryReadString1( pp_data, pi_data );
1262     if( p_sys->psz_title )
1263         msg_Dbg( p_demux, "    - title=`%s'", p_sys->psz_title );
1264
1265     /* Authors */
1266     p_sys->psz_artist = MemoryReadString1( pp_data, pi_data );
1267     if( p_sys->psz_artist )
1268         msg_Dbg( p_demux, "    - artist=`%s'", p_sys->psz_artist );
1269
1270     /* Copyright */
1271     p_sys->psz_copyright = MemoryReadString1( pp_data, pi_data );
1272     if( p_sys->psz_copyright )
1273         msg_Dbg( p_demux, "    - copyright=`%s'", p_sys->psz_copyright );
1274
1275     /* Comment */
1276     p_sys->psz_description = MemoryReadString1( pp_data, pi_data );
1277     if( p_sys->psz_description )
1278         msg_Dbg( p_demux, "    - Comment=`%s'", p_sys->psz_description );
1279 }
1280
1281 static int CodecVideoParse( demux_t *p_demux, int i_tk_id, const uint8_t *p_data, int i_data )
1282 {
1283     demux_sys_t *p_sys = p_demux->p_sys;
1284
1285     if( i_data < 34 )
1286         return VLC_EGENERIC;
1287
1288     /* */
1289     es_format_t fmt;
1290     es_format_Init( &fmt, VIDEO_ES,
1291                     VLC_FOURCC( p_data[8], p_data[9], p_data[10], p_data[11] ) );
1292     fmt.video.i_width = GetWBE( &p_data[12] );
1293     fmt.video.i_height= GetWBE( &p_data[14] );
1294     fmt.video.i_frame_rate = (GetWBE( &p_data[22] ) << 16) | GetWBE( &p_data[24] );
1295     fmt.video.i_frame_rate_base = 1 << 16;
1296
1297     fmt.i_extra = 8;
1298     fmt.p_extra = malloc( 8 );
1299     if( !fmt.p_extra )
1300         return VLC_ENOMEM;
1301
1302     memcpy( fmt.p_extra, &p_data[26], 8 );
1303
1304     //msg_Dbg( p_demux, "    - video 0x%08x 0x%08x", dw0, dw1 );
1305
1306     /* */
1307     switch( GetDWBE( &p_data[30] ) )
1308     {
1309     case 0x10003000:
1310     case 0x10003001:
1311         fmt.i_codec = VLC_FOURCC( 'R','V','1','3' );
1312         break;
1313     case 0x20001000:
1314     case 0x20100001:
1315     case 0x20200002:
1316     case 0x20201002:
1317         fmt.i_codec = VLC_FOURCC( 'R','V','2','0' );
1318         break;
1319     case 0x30202002:
1320         fmt.i_codec = VLC_FOURCC( 'R','V','3','0' );
1321         break;
1322     case 0x40000000:
1323         fmt.i_codec = VLC_FOURCC( 'R','V','4','0' );
1324         break;
1325     }
1326     msg_Dbg( p_demux, "    - video %4.4s %dx%d - %8.8x",
1327              (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height, GetDWBE( &p_data[30] ) );
1328
1329     real_track_t *tk = malloc( sizeof( *tk ) );
1330     if( !tk )
1331     {
1332         es_format_Clean( &fmt );
1333         return VLC_ENOMEM;
1334     }
1335     tk->i_out_subpacket = 0;
1336     tk->i_subpacket = 0;
1337     tk->i_subpackets = 0;
1338     tk->p_subpackets = NULL;
1339     tk->p_subpackets_timecode = NULL;
1340     tk->i_id = i_tk_id;
1341     tk->fmt = fmt;
1342     tk->i_frame_num = -1;
1343     tk->i_frame_size = 0;
1344     tk->p_frame = NULL;
1345     tk->i_last_dts = 0;
1346     tk->p_es = es_out_Add( p_demux->out, &fmt );
1347
1348     TAB_APPEND( p_sys->i_track, p_sys->track, tk );
1349     return VLC_SUCCESS;
1350 }
1351 static int CodecAudioParse( demux_t *p_demux, int i_tk_id, const uint8_t *p_data, int i_data )
1352 {
1353     demux_sys_t *p_sys = p_demux->p_sys;
1354     es_format_t fmt;
1355
1356     if( i_data < 6 )
1357         return VLC_EGENERIC;
1358     
1359     int i_flavor = 0;
1360     int i_coded_frame_size = 0;
1361     int i_subpacket_h = 0;
1362     int i_frame_size = 0;
1363     int i_subpacket_size = 0;
1364     char p_genr[4];
1365     int i_version = GetWBE( &p_data[4] );
1366     int i_extra_codec = 0;
1367
1368     msg_Dbg( p_demux, "    - audio version=%d", i_version );
1369
1370     es_format_Init( &fmt, AUDIO_ES, 0 );
1371
1372     RVoid( &p_data, &i_data, 6 );                         /* 4 + version */
1373     if( i_version == 3 ) /* RMF version 3 or .ra version 3 */
1374     {
1375         RVoid( &p_data, &i_data, 2 + 10 + 4 );
1376
1377         /* Meta Datas */
1378         CodecMetaRead( p_demux, &p_data, &i_data );
1379
1380         RVoid( &p_data, &i_data, 1 + 1 );
1381         if( i_data >= 4 )
1382             memcpy( &fmt.i_codec, p_data, 4 );
1383         RVoid( &p_data, &i_data, 4 );
1384
1385         fmt.audio.i_channels = 1;      /* This is always the case in rm3 */
1386         fmt.audio.i_rate = 8000;
1387
1388         msg_Dbg( p_demux, "    - audio codec=%4.4s channels=%d rate=%dHz",
1389              (char*)&fmt.i_codec, fmt.audio.i_channels, fmt.audio.i_rate );
1390     }
1391     else  /* RMF version 4/5 or .ra version 4 */
1392     {
1393         RVoid( &p_data, &i_data, 2 + 4 + 4 + 2 + 4 );
1394         i_flavor = R16( &p_data, &i_data );
1395         i_coded_frame_size = R32( &p_data, &i_data );
1396         RVoid( &p_data, &i_data, 4 + 4 + 4 );
1397         i_subpacket_h = R16( &p_data, &i_data );
1398         i_frame_size = R16( &p_data, &i_data );
1399         i_subpacket_size = R16( &p_data, &i_data );
1400         if( !i_frame_size || !i_coded_frame_size )
1401             return VLC_EGENERIC;
1402
1403         RVoid( &p_data, &i_data, 2 + (i_version == 5 ? 6 : 0 ) );
1404
1405         fmt.audio.i_rate = R16( &p_data, &i_data );
1406         RVoid( &p_data, &i_data, 2 );
1407         fmt.audio.i_bitspersample = R16( &p_data, &i_data );
1408         fmt.audio.i_channels = R16( &p_data, &i_data );
1409         fmt.audio.i_blockalign = i_frame_size;
1410
1411         if( i_version == 5 )
1412         {
1413             if( i_data >= 8 )
1414             {
1415                 memcpy( p_genr,       &p_data[0], 4 );
1416                 memcpy( &fmt.i_codec, &p_data[4], 4 );
1417             }
1418             RVoid( &p_data, &i_data, 8 );
1419         }
1420         else /* version 4 */
1421         {
1422             if( i_data > 0 )
1423                 RVoid( &p_data, &i_data, 1 + *p_data );
1424             if( i_data >= 1 + 4 )
1425                 memcpy( &fmt.i_codec, &p_data[1], 4 );
1426             if( i_data > 0 )
1427                 RVoid( &p_data, &i_data, 1 + *p_data );
1428         }
1429
1430         msg_Dbg( p_demux, "    - audio codec=%4.4s channels=%d rate=%dHz",
1431              (char*)&fmt.i_codec, fmt.audio.i_channels, fmt.audio.i_rate );
1432
1433         RVoid( &p_data, &i_data, 3 );
1434
1435         if( p_sys->b_real_audio )
1436         {
1437             CodecMetaRead( p_demux, &p_data, &i_data );
1438         }
1439         else
1440         {
1441             if( i_version == 5 )
1442                 RVoid( &p_data, &i_data, 1 );
1443             i_extra_codec = R32( &p_data, &i_data );
1444         }
1445     }
1446
1447     switch( fmt.i_codec )
1448     {
1449     case VLC_FOURCC('l','p','c','J'):
1450         fmt.i_codec = VLC_FOURCC( '1','4','_','4' );
1451     case VLC_FOURCC('1','4','_','4'):
1452         fmt.audio.i_blockalign = 0x14 ;
1453         break;
1454
1455     case VLC_FOURCC('2','8','_','8'):
1456         fmt.audio.i_blockalign = i_coded_frame_size;
1457         break;
1458
1459     case VLC_FOURCC( 'd','n','e','t' ):
1460         fmt.i_codec = VLC_FOURCC( 'a','5','2',' ' );
1461         break;
1462
1463     case VLC_FOURCC( 'r','a','a','c' ):
1464     case VLC_FOURCC( 'r','a','c','p' ):
1465         fmt.i_codec = VLC_FOURCC( 'm','p','4','a' );
1466
1467         if( i_extra_codec > 0 )
1468         {
1469             i_extra_codec--;
1470             RVoid( &p_data, &i_data, 1 );
1471         }
1472         if( i_extra_codec > 0 )
1473         {
1474             fmt.p_extra = malloc( i_extra_codec );
1475             if( !fmt.p_extra || i_extra_codec > i_data )
1476                 return VLC_ENOMEM;
1477
1478             fmt.i_extra = i_extra_codec;
1479             memcpy( fmt.p_extra, p_data, fmt.i_extra );
1480         }
1481         break;
1482
1483     case VLC_FOURCC('s','i','p','r'):
1484         fmt.audio.i_flavor = i_flavor;
1485     case VLC_FOURCC('c','o','o','k'):
1486     case VLC_FOURCC('a','t','r','c'):
1487         if( i_subpacket_size <= 0 ||
1488             i_frame_size / i_subpacket_size <= 0 )
1489         {
1490             es_format_Clean( &fmt );
1491             return VLC_EGENERIC;
1492         }
1493         if( !memcmp( p_genr, "genr", 4 ) )
1494             fmt.audio.i_blockalign = i_subpacket_size;
1495         else
1496             fmt.audio.i_blockalign = i_coded_frame_size;
1497
1498         if( i_extra_codec > 0 )
1499         {
1500             fmt.p_extra = malloc( i_extra_codec );
1501             if( !fmt.p_extra || i_extra_codec > i_data )
1502                 return VLC_ENOMEM;
1503
1504             fmt.i_extra = i_extra_codec;
1505             memcpy( fmt.p_extra, p_data, fmt.i_extra );
1506         }
1507
1508         break;
1509
1510     case VLC_FOURCC('r','a','l','f'):
1511         msg_Dbg( p_demux, "    - audio codec not supported=%4.4s",
1512                  (char*)&fmt.i_codec );
1513         break;
1514
1515     default:
1516         msg_Dbg( p_demux, "    - unknown audio codec=%4.4s",
1517                  (char*)&fmt.i_codec );
1518         break;
1519     }
1520     msg_Dbg( p_demux, "        - extra data=%d", fmt.i_extra );
1521
1522     /* */
1523     real_track_t *tk = malloc( sizeof( *tk ) );
1524     if( !tk )
1525     {
1526         es_format_Clean( &fmt );
1527         return VLC_ENOMEM;
1528     }
1529     tk->i_id = i_tk_id;
1530     tk->fmt = fmt;
1531     tk->i_frame_size = 0;
1532     tk->p_frame = NULL;
1533
1534     tk->i_subpacket_h = i_subpacket_h;
1535     tk->i_subpacket_size = i_subpacket_size;
1536     tk->i_coded_frame_size = i_coded_frame_size;
1537     tk->i_frame_size = i_frame_size;
1538
1539     tk->i_out_subpacket = 0;
1540     tk->i_subpacket = 0;
1541     tk->i_subpackets = 0;
1542     tk->p_subpackets = NULL;
1543     tk->p_subpackets_timecode = NULL;
1544     if( fmt.i_codec == VLC_FOURCC('c','o','o','k') ||
1545         fmt.i_codec == VLC_FOURCC('a','t','r','c') ||
1546         fmt.i_codec == VLC_FOURCC('s','i','p','r') )
1547     {
1548         tk->i_subpackets =
1549             i_subpacket_h * i_frame_size / tk->i_subpacket_size;
1550         tk->p_subpackets =
1551             calloc( tk->i_subpackets, sizeof(block_t *) );
1552         tk->p_subpackets_timecode =
1553             calloc( tk->i_subpackets , sizeof( int64_t ) );
1554     }
1555     else if( fmt.i_codec == VLC_FOURCC('2','8','_','8') )
1556     {
1557         tk->i_subpackets =
1558             i_subpacket_h * i_frame_size / tk->i_coded_frame_size;
1559         tk->p_subpackets =
1560             calloc( tk->i_subpackets, sizeof(block_t *) );
1561         tk->p_subpackets_timecode =
1562             calloc( tk->i_subpackets , sizeof( int64_t ) );
1563     }
1564
1565     /* Check if the calloc went correctly */
1566     if( tk->i_subpacket > 0 && ( !tk->p_subpackets || !tk->p_subpackets_timecode ) )
1567     {
1568         free( tk->p_subpackets_timecode );
1569         free( tk->p_subpackets );
1570         free( tk );
1571         msg_Err( p_demux, "Can't alloc subpacket" );
1572         return VLC_EGENERIC;
1573     }
1574
1575     tk->i_last_dts = 0;
1576     tk->p_es = es_out_Add( p_demux->out, &fmt );
1577
1578     TAB_APPEND( p_sys->i_track, p_sys->track, tk );
1579
1580     return VLC_SUCCESS;
1581 }
1582
1583
1584 static int CodecParse( demux_t *p_demux, int i_len, int i_num )
1585 {
1586     const uint8_t *p_peek;
1587
1588     msg_Dbg( p_demux, "    - specific data len=%d", i_len );
1589     if( stream_Peek( p_demux->s, &p_peek, i_len ) < i_len )
1590         return VLC_EGENERIC;
1591
1592     if( i_len >= 8 && !memcmp( &p_peek[4], "VIDO", 4 ) )
1593     {
1594         return CodecVideoParse( p_demux, i_num, p_peek, i_len );
1595     }
1596     else if( i_len >= 4 && !memcmp( &p_peek[0], ".ra\xfd", 4 ) )
1597     {
1598         return CodecAudioParse( p_demux, i_num, p_peek, i_len );
1599     }
1600     return VLC_SUCCESS;
1601 }
1602
1603 /*****************************************************************************
1604  * Helpers: memory buffer fct.
1605  *****************************************************************************/
1606 static void RVoid( const uint8_t **pp_data, int *pi_data, int i_size )
1607 {
1608     if( i_size > *pi_data )
1609         i_size = *pi_data;
1610
1611     *pp_data += i_size;
1612     *pi_data -= i_size;
1613 }
1614 #define RX(name, type, size, code ) \
1615 static type name( const uint8_t **pp_data, int *pi_data ) { \
1616     if( *pi_data < (size) )          \
1617         return 0;                    \
1618     type v = code;                   \
1619     RVoid( pp_data, pi_data, size ); \
1620     return v;                        \
1621 }
1622 RX(R8,  uint8_t, 1, **pp_data )
1623 RX(R16, uint16_t, 2, GetWBE( *pp_data ) )
1624 RX(R32, uint32_t, 4, GetDWBE( *pp_data ) )
1625 static int RLength( const uint8_t **pp_data, int *pi_data )
1626 {
1627     const int v0 = R16( pp_data, pi_data ) & 0x7FFF;
1628     if( v0 >= 0x4000 )
1629         return v0 - 0x4000;
1630     return (v0 << 16) | R16( pp_data, pi_data );
1631 }
1632
1633