]> git.sesse.net Git - vlc/blob - modules/demux/mpeg/es.c
Added support for mpga in wav (close #2957).
[vlc] / modules / demux / mpeg / es.c
1 /*****************************************************************************
2  * es.c : Generic audio ES input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_demux.h>
36 #include <vlc_codec.h>
37 #include <vlc_codecs.h>
38 #include <vlc_input.h>
39
40 #include "../../codec/a52.h"
41
42 /*****************************************************************************
43  * Module descriptor
44  *****************************************************************************/
45 static int  Open ( vlc_object_t * );
46 static void Close( vlc_object_t * );
47
48 vlc_module_begin ()
49     set_category( CAT_INPUT )
50     set_subcategory( SUBCAT_INPUT_DEMUX )
51     set_description( N_("MPEG-I/II/4 / A52 / DTS / MLP audio" ) )
52     set_capability( "demux", 155 )
53     set_callbacks( Open, Close )
54
55     add_shortcut( "mpga" )
56     add_shortcut( "mp3" )
57
58     add_shortcut( "m4a" )
59     add_shortcut( "mp4a" )
60     add_shortcut( "aac" )
61
62     add_shortcut( "ac3" )
63     add_shortcut( "a52" )
64
65     add_shortcut( "eac3" )
66
67     add_shortcut( "dts" )
68
69     add_shortcut( "mlp" )
70     add_shortcut( "thd" )
71 vlc_module_end ()
72
73 /*****************************************************************************
74  * Local prototypes
75  *****************************************************************************/
76 static int Demux  ( demux_t * );
77 static int Control( demux_t *, int, va_list );
78
79 typedef struct
80 {
81     vlc_fourcc_t i_codec;
82     bool       b_use_word;
83     const char *psz_name;
84     int  (*pf_probe)( demux_t *p_demux, int64_t *pi_offset );
85     int  (*pf_init)( demux_t *p_demux );
86 } codec_t;
87
88 struct demux_sys_t
89 {
90     codec_t codec;
91
92     es_out_id_t *p_es;
93
94     bool  b_start;
95     decoder_t   *p_packetizer;
96
97     mtime_t     i_pts;
98     mtime_t     i_time_offset;
99     int64_t     i_bytes;
100
101     bool        b_big_endian;
102     bool        b_estimate_bitrate;
103     int         i_bitrate_avg;  /* extracted from Xing header */
104
105     bool b_initial_sync_failed;
106
107     int i_packet_size;
108
109     int64_t i_stream_offset;
110
111     /* Mpga specific */
112     struct
113     {
114         int i_frames;
115         int i_bytes;
116         int i_bitrate_avg;
117         int i_frame_samples;
118     } xing;
119 };
120
121 static int MpgaProbe( demux_t *p_demux, int64_t *pi_offset );
122 static int MpgaInit( demux_t *p_demux );
123
124 static int AacProbe( demux_t *p_demux, int64_t *pi_offset );
125 static int AacInit( demux_t *p_demux );
126
127 static int EA52Probe( demux_t *p_demux, int64_t *pi_offset );
128 static int A52Probe( demux_t *p_demux, int64_t *pi_offset );
129 static int A52Init( demux_t *p_demux );
130
131 static int DtsProbe( demux_t *p_demux, int64_t *pi_offset );
132 static int DtsInit( demux_t *p_demux );
133
134 static int MlpProbe( demux_t *p_demux, int64_t *pi_offset );
135 static int MlpInit( demux_t *p_demux );
136
137 static const codec_t p_codec[] = {
138     { VLC_CODEC_MP4A, false, "mp4 audio",  AacProbe,  AacInit },
139     { VLC_CODEC_MPGA, false, "mpeg audio", MpgaProbe, MpgaInit },
140     { VLC_CODEC_A52, true,  "a52 audio",  A52Probe,  A52Init },
141     { VLC_CODEC_EAC3, true,  "eac3 audio", EA52Probe, A52Init },
142     { VLC_CODEC_DTS, false, "dts audio",  DtsProbe,  DtsInit },
143     { VLC_CODEC_TRUEHD, false, "mlp audio",  MlpProbe,  MlpInit },
144
145     { 0, false, NULL, NULL, NULL }
146 };
147
148 /*****************************************************************************
149  * Open: initializes demux structures
150  *****************************************************************************/
151 static int Open( vlc_object_t * p_this )
152 {
153     demux_t     *p_demux = (demux_t*)p_this;
154     demux_sys_t *p_sys;
155
156     es_format_t fmt;
157     int64_t i_offset;
158     int i_index;
159
160     for( i_index = 0; p_codec[i_index].i_codec != 0; i_index++ )
161     {
162         if( !p_codec[i_index].pf_probe( p_demux, &i_offset ) )
163             break;
164     }
165
166     if( p_codec[i_index].i_codec == 0 )
167         return VLC_EGENERIC;
168
169     DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
170     memset( p_sys, 0, sizeof( demux_sys_t ) );
171     p_sys->codec = p_codec[i_index];
172     p_sys->p_es = NULL;
173     p_sys->b_start = true;
174     p_sys->i_stream_offset = i_offset;
175     p_sys->b_estimate_bitrate = true;
176     p_sys->i_bitrate_avg = 0;
177     p_sys->b_big_endian = false;
178
179     if( stream_Seek( p_demux->s, p_sys->i_stream_offset ) )
180     {
181         free( p_sys );
182         return VLC_EGENERIC;
183     }
184
185     if( p_sys->codec.pf_init( p_demux ) )
186     {
187         free( p_sys );
188         return VLC_EGENERIC;
189     }
190
191     msg_Dbg( p_demux, "detected format %4.4s", (const char*)&p_sys->codec.i_codec );
192
193     /* Load the audio packetizer */
194     es_format_Init( &fmt, AUDIO_ES, p_sys->codec.i_codec );
195     p_sys->p_packetizer = demux_PacketizerNew( p_demux, &fmt, p_sys->codec.psz_name );
196     if( !p_sys->p_packetizer )
197     {
198         free( p_sys );
199         return VLC_EGENERIC;
200     }
201     return VLC_SUCCESS;
202 }
203
204 /*****************************************************************************
205  * Demux: reads and demuxes data packets
206  *****************************************************************************
207  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
208  *****************************************************************************/
209 static int Demux( demux_t *p_demux )
210 {
211     demux_sys_t *p_sys = p_demux->p_sys;
212     block_t *p_block_in, *p_block_out;
213
214     if( p_sys->codec.b_use_word )
215     {
216         /* Make sure we are word aligned */
217         int64_t i_pos = stream_Tell( p_demux->s );
218         if( i_pos % 2 )
219             stream_Read( p_demux->s, NULL, 1 );
220     }
221
222     if( ( p_block_in = stream_Block( p_demux->s, p_sys->i_packet_size ) ) == NULL )
223         return 0;
224
225     if( p_sys->codec.b_use_word && !p_sys->b_big_endian && p_block_in->i_buffer > 0 )
226     {
227         /* Convert to big endian */
228         swab( p_block_in->p_buffer, p_block_in->p_buffer, p_block_in->i_buffer );
229     }
230
231     p_block_in->i_pts = p_block_in->i_dts = p_sys->b_start || p_sys->b_initial_sync_failed ? 1 : 0;
232     p_sys->b_initial_sync_failed = p_sys->b_start; /* Only try to resync once */
233
234     while( ( p_block_out = p_sys->p_packetizer->pf_packetize( p_sys->p_packetizer, &p_block_in ) ) )
235     {
236         p_sys->b_initial_sync_failed = false;
237         while( p_block_out )
238         {
239             block_t *p_next = p_block_out->p_next;
240
241             if( !p_sys->p_es )
242             {
243                 p_sys->p_packetizer->fmt_out.b_packetized = true;
244                 p_sys->p_es = es_out_Add( p_demux->out,
245                                           &p_sys->p_packetizer->fmt_out);
246
247
248                 /* Try the xing header */
249                 if( p_sys->xing.i_bytes && p_sys->xing.i_frames &&
250                     p_sys->xing.i_frame_samples )
251                 {
252                     p_sys->i_bitrate_avg = p_sys->xing.i_bytes * INT64_C(8) *
253                         p_sys->p_packetizer->fmt_out.audio.i_rate /
254                         p_sys->xing.i_frames / p_sys->xing.i_frame_samples;
255
256                     if( p_sys->i_bitrate_avg > 0 )
257                         p_sys->b_estimate_bitrate = false;
258                 }
259                 /* Use the bitrate as initual value */
260                 if( p_sys->b_estimate_bitrate )
261                     p_sys->i_bitrate_avg = p_sys->p_packetizer->fmt_out.i_bitrate;
262             }
263
264             p_sys->i_pts = p_block_out->i_pts;
265
266             /* Re-estimate bitrate */
267             if( p_sys->b_estimate_bitrate && p_sys->i_pts > 1 + INT64_C(500000) )
268                 p_sys->i_bitrate_avg = 8*INT64_C(1000000)*p_sys->i_bytes/(p_sys->i_pts-1);
269             p_sys->i_bytes += p_block_out->i_buffer;
270
271             /* Correct timestamp */
272             p_block_out->i_pts += p_sys->i_time_offset;
273             p_block_out->i_dts += p_sys->i_time_offset;
274
275             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
276
277             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
278
279             p_block_out = p_next;
280         }
281     }
282
283     if( p_sys->b_initial_sync_failed )
284         msg_Dbg( p_demux, "did not sync on first block" );
285     p_sys->b_start = false;
286     return 1;
287 }
288
289 /*****************************************************************************
290  * Close: frees unused data
291  *****************************************************************************/
292 static void Close( vlc_object_t * p_this )
293 {
294     demux_t     *p_demux = (demux_t*)p_this;
295     demux_sys_t *p_sys = p_demux->p_sys;
296
297     demux_PacketizerDestroy( p_sys->p_packetizer );
298     free( p_sys );
299 }
300
301 /*****************************************************************************
302  * Control:
303  *****************************************************************************/
304 static int Control( demux_t *p_demux, int i_query, va_list args )
305 {
306     demux_sys_t *p_sys  = p_demux->p_sys;
307     int64_t *pi64;
308     bool *pb_bool;
309     int i_ret;
310     va_list args_save;
311
312     va_copy ( args_save, args );
313
314     switch( i_query )
315     {
316         case DEMUX_HAS_UNSUPPORTED_META:
317             pb_bool = (bool*)va_arg( args, bool* );
318             *pb_bool = true;
319             return VLC_SUCCESS;
320
321         case DEMUX_GET_TIME:
322             pi64 = (int64_t*)va_arg( args, int64_t * );
323             *pi64 = p_sys->i_pts + p_sys->i_time_offset;
324             return VLC_SUCCESS;
325
326         case DEMUX_GET_LENGTH:
327             i_ret = demux_vaControlHelper( p_demux->s, p_sys->i_stream_offset, -1,
328                                             p_sys->i_bitrate_avg, 1, i_query,
329                                             args );
330             /* No bitrate, we can't have it precisely, but we can compute
331              * a raw approximation with time/position */
332             if( i_ret && !p_sys->i_bitrate_avg )
333             {
334                 float f_pos = (double)(uint64_t)( stream_Tell( p_demux->s ) ) /
335                               (double)(uint64_t)( stream_Size( p_demux->s ) );
336                 /* The first few seconds are guaranteed to be very whacky,
337                  * don't bother trying ... Too bad */
338                 if( f_pos < 0.01 ||
339                     (p_sys->i_pts + p_sys->i_time_offset) < 8000000 )
340                     return VLC_EGENERIC;
341
342                 pi64 = (int64_t *)va_arg( args_save, int64_t * );
343                 *pi64 = (p_sys->i_pts + p_sys->i_time_offset) / f_pos;
344                 return VLC_SUCCESS;
345             }
346             va_end( args_save );
347             return i_ret;
348
349         case DEMUX_SET_TIME:
350             /* FIXME TODO: implement a high precision seek (with mp3 parsing)
351              * needed for multi-input */
352         default:
353             i_ret = demux_vaControlHelper( p_demux->s, p_sys->i_stream_offset, -1,
354                                             p_sys->i_bitrate_avg, 1, i_query,
355                                             args );
356             if( !i_ret && p_sys->i_bitrate_avg > 0 &&
357                 (i_query == DEMUX_SET_POSITION || i_query == DEMUX_SET_TIME) )
358             {
359                 int64_t i_time = INT64_C(8000000) * ( stream_Tell(p_demux->s) - p_sys->i_stream_offset ) /
360                     p_sys->i_bitrate_avg;
361
362                 /* Fix time_offset */
363                 if( i_time >= 0 )
364                     p_sys->i_time_offset = i_time - p_sys->i_pts;
365             }
366             return i_ret;
367     }
368 }
369
370 /*****************************************************************************
371  * Wav header skipper
372  *****************************************************************************/
373 #define WAV_PROBE_SIZE (512*1024)
374 static int WavSkipHeader( demux_t *p_demux, int *pi_skip, const int pi_format[] )
375 {
376     const uint8_t *p_peek;
377     int         i_peek = 0;
378
379     /* */
380     *pi_skip = 0;
381
382     /* Check if we are dealing with a WAV file */
383     if( stream_Peek( p_demux->s, &p_peek, 12+8 ) != 12 + 8 )
384         return VLC_SUCCESS;
385
386     if( memcmp( p_peek, "RIFF", 4 ) || memcmp( &p_peek[8], "WAVE", 4 ) )
387         return VLC_SUCCESS;
388
389     /* Find the wave format header */
390     i_peek = 12 + 8;
391     while( memcmp( p_peek + i_peek - 8, "fmt ", 4 ) )
392     {
393         uint32_t i_len = GetDWLE( p_peek + i_peek - 4 );
394         if( i_len > WAV_PROBE_SIZE || i_peek + i_len > WAV_PROBE_SIZE )
395             return VLC_EGENERIC;
396
397         i_peek += i_len + 8;
398         if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek )
399             return VLC_EGENERIC;
400     }
401
402     /* Sanity check the wave format header */
403     uint32_t i_len = GetDWLE( p_peek + i_peek - 4 );
404     if( i_len > WAV_PROBE_SIZE )
405         return VLC_EGENERIC;
406
407     i_peek += i_len + 8;
408     if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek )
409         return VLC_EGENERIC;
410     const int i_format = GetWLE( p_peek + i_peek - i_len - 8 /* wFormatTag */ );
411     int i_format_idx;
412     for( i_format_idx = 0; pi_format[i_format_idx] != WAVE_FORMAT_UNKNOWN; i_format_idx++ )
413     {
414         if( i_format == pi_format[i_format_idx] )
415             break;
416     }
417     if( pi_format[i_format_idx] == WAVE_FORMAT_UNKNOWN )
418         return VLC_EGENERIC;
419
420     if( i_format == WAVE_FORMAT_PCM )
421     {
422         if( GetWLE( p_peek + i_peek - i_len - 6 /* nChannels */ ) != 2 )
423             return VLC_EGENERIC;
424         if( GetDWLE( p_peek + i_peek - i_len - 4 /* nSamplesPerSec */ ) !=
425             44100 )
426             return VLC_EGENERIC;
427     }
428
429     /* Skip the wave header */
430     while( memcmp( p_peek + i_peek - 8, "data", 4 ) )
431     {
432         uint32_t i_len = GetDWLE( p_peek + i_peek - 4 );
433         if( i_len > WAV_PROBE_SIZE || i_peek + i_len > WAV_PROBE_SIZE )
434             return VLC_EGENERIC;
435
436         i_peek += i_len + 8;
437         if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek )
438             return VLC_EGENERIC;
439     }
440     *pi_skip = i_peek;
441     return VLC_SUCCESS;
442 }
443
444 static int GenericProbe( demux_t *p_demux, int64_t *pi_offset,
445                          const char * ppsz_name[],
446                          int (*pf_check)( const uint8_t * ), int i_check_size,
447                          const int pi_wav_format[] )
448 {
449     bool   b_forced_demux;
450
451     int64_t i_offset;
452     const uint8_t *p_peek;
453     int i_skip;
454
455     b_forced_demux = false;
456     for( int i = 0; ppsz_name[i] != NULL; i++ )
457     {
458         b_forced_demux |= demux_IsForced( p_demux, ppsz_name[i] );
459     }
460
461     i_offset = stream_Tell( p_demux->s );
462
463     if( WavSkipHeader( p_demux, &i_skip, pi_wav_format ) )
464     {
465         if( !b_forced_demux )
466             return VLC_EGENERIC;
467     }
468     const bool b_wav = i_skip > 0;
469
470     /* peek the begining
471      * It is common that wav files have some sort of garbage at the begining */
472     const int i_probe = i_skip + i_check_size + ( b_wav ? 16000 : 0);
473     const int i_peek = stream_Peek( p_demux->s, &p_peek, i_probe );
474     if( i_peek < i_skip + i_check_size )
475     {
476         msg_Err( p_demux, "cannot peek" );
477         return VLC_EGENERIC;
478     }
479     for( ;; )
480     {
481         if( i_skip + i_check_size > i_peek )
482         {
483             if( !b_forced_demux )
484                 return VLC_EGENERIC;
485             break;
486         }
487         const int i_size = pf_check( &p_peek[i_skip] );
488         if( i_size >= 0 )
489         {
490             if( i_size == 0 || 1)
491                 break;
492
493             /* If we have the frame size, check the next frame for
494              * extra robustness */
495             if( i_skip + i_check_size + i_size <= i_peek )
496             {
497                 if( pf_check( &p_peek[i_skip+i_size] ) >= 0 )
498                     break;
499             }
500         }
501         i_skip++;
502     }
503
504     *pi_offset = i_offset + i_skip;
505     return VLC_SUCCESS;
506 }
507
508 /*****************************************************************************
509  * Mpeg I/II Audio
510  *****************************************************************************/
511 static int MpgaCheckSync( const uint8_t *p_peek )
512 {
513     uint32_t h = GetDWBE( p_peek );
514
515     if( ((( h >> 21 )&0x07FF) != 0x07FF )   /* header sync */
516         || (((h >> 17)&0x03) == 0 )         /* valid layer ?*/
517         || (((h >> 12)&0x0F) == 0x0F )
518         || (((h >> 12)&0x0F) == 0x00 )      /* valid bitrate ? */
519         || (((h >> 10) & 0x03) == 0x03 )    /* valide sampling freq ? */
520         || ((h & 0x03) == 0x02 ))           /* valid emphasis ? */
521     {
522         return false;
523     }
524     return true;
525 }
526
527 #define MPGA_VERSION( h )   ( 1 - (((h)>>19)&0x01) )
528 #define MPGA_MODE(h)        (((h)>> 6)&0x03)
529
530 static int MpgaGetFrameSamples( uint32_t h )
531 {
532     const int i_layer = 3 - (((h)>>17)&0x03);
533     switch( i_layer )
534     {
535     case 0:
536         return 384;
537     case 1:
538         return 1152;
539     case 2:
540         return MPGA_VERSION(h) ? 576 : 1152;
541     default:
542         return 0;
543     }
544 }
545
546 static int MpgaProbe( demux_t *p_demux, int64_t *pi_offset )
547 {
548     const int pi_wav[] = { WAVE_FORMAT_MPEG, WAVE_FORMAT_MPEGLAYER3, WAVE_FORMAT_UNKNOWN };
549     bool   b_forced;
550     bool   b_forced_demux;
551     int64_t i_offset;
552
553     const uint8_t *p_peek;
554     int i_skip;
555
556     b_forced = demux_IsPathExtension( p_demux, ".mp3" );
557     b_forced_demux = demux_IsForced( p_demux, "mp3" ) ||
558                      demux_IsForced( p_demux, "mpga" );
559
560     i_offset = stream_Tell( p_demux->s );
561
562     if( WavSkipHeader( p_demux, &i_skip, pi_wav ) )
563     {
564         if( !b_forced_demux )
565             return VLC_EGENERIC;
566
567         return VLC_EGENERIC;
568     }
569
570     if( stream_Peek( p_demux->s, &p_peek, i_skip + 4 ) < i_skip + 4 )
571         return VLC_EGENERIC;
572
573     if( !MpgaCheckSync( &p_peek[i_skip] ) )
574     {
575         bool b_ok = false;
576         int i_peek;
577
578         if( !b_forced_demux && !b_forced )
579             return VLC_EGENERIC;
580
581         i_peek = stream_Peek( p_demux->s, &p_peek, i_skip + 8096 );
582         while( i_skip + 4 < i_peek )
583         {
584             if( MpgaCheckSync( &p_peek[i_skip] ) )
585             {
586                 b_ok = true;
587                 break;
588             }
589             i_skip++;
590         }
591         if( !b_ok && !b_forced_demux )
592             return VLC_EGENERIC;
593     }
594     *pi_offset = i_offset + i_skip;
595     return VLC_SUCCESS;
596 }
597
598 static void MpgaXingSkip( const uint8_t **pp_xing, int *pi_xing, int i_count )
599 {
600     if(i_count > *pi_xing )
601         i_count = *pi_xing;
602
603     (*pp_xing) += i_count;
604     (*pi_xing) -= i_count;
605 }
606
607 static uint32_t MpgaXingGetDWBE( const uint8_t **pp_xing, int *pi_xing, uint32_t i_default )
608 {
609     if( *pi_xing < 4 )
610         return i_default;
611
612     uint32_t v = GetDWBE( *pp_xing );
613
614     MpgaXingSkip( pp_xing, pi_xing, 4 );
615
616     return v;
617 }
618
619 static int MpgaInit( demux_t *p_demux )
620 {
621     demux_sys_t *p_sys = p_demux->p_sys;
622
623     const uint8_t *p_peek;
624     int i_peek;
625
626     /* */
627     p_sys->i_packet_size = 1024;
628
629     /* Load a potential xing header */
630     i_peek = stream_Peek( p_demux->s, &p_peek, 4 + 1024 );
631     if( i_peek < 4 + 21 )
632         return VLC_SUCCESS;
633
634     const uint32_t header = GetDWBE( p_peek );
635     if( !MpgaCheckSync( p_peek ) )
636         return VLC_SUCCESS;
637
638     /* Xing header */
639     const uint8_t *p_xing = p_peek;
640     int i_xing = i_peek;
641     int i_skip;
642
643     if( MPGA_VERSION( header ) == 0 )
644         i_skip = MPGA_MODE( header ) != 3 ? 36 : 21;
645     else
646         i_skip = MPGA_MODE( header ) != 3 ? 21 : 13;
647
648     if( i_skip + 8 >= i_xing || memcmp( &p_xing[i_skip], "Xing", 4 ) )
649         return VLC_SUCCESS;
650
651     const uint32_t i_flags = GetDWBE( &p_xing[i_skip+4] );
652
653     MpgaXingSkip( &p_xing, &i_xing, i_skip + 8 );
654
655     if( i_flags&0x01 )
656         p_sys->xing.i_frames = MpgaXingGetDWBE( &p_xing, &i_xing, 0 );
657     if( i_flags&0x02 )
658         p_sys->xing.i_bytes = MpgaXingGetDWBE( &p_xing, &i_xing, 0 );
659     if( i_flags&0x04 ) /* TODO Support XING TOC to improve seeking accuracy */
660         MpgaXingSkip( &p_xing, &i_xing, 100 );
661     if( i_flags&0x08 )
662     {
663         /* FIXME: doesn't return the right bitrage average, at least
664            with some MP3's */
665         p_sys->xing.i_bitrate_avg = MpgaXingGetDWBE( &p_xing, &i_xing, 0 );
666         msg_Dbg( p_demux, "xing vbr value present (%d)",
667                  p_sys->xing.i_bitrate_avg );
668     }
669
670     if( p_sys->xing.i_frames > 0 && p_sys->xing.i_bytes > 0 )
671     {
672         p_sys->xing.i_frame_samples = MpgaGetFrameSamples( header );
673         msg_Dbg( p_demux, "xing frames&bytes value present "
674                  "(%d bytes, %d frames, %d samples/frame)",
675                  p_sys->xing.i_bytes, p_sys->xing.i_frames,
676                  p_sys->xing.i_frame_samples );
677     }
678     return VLC_SUCCESS;
679 }
680
681 /*****************************************************************************
682  * AAC
683  *****************************************************************************/
684 static int AacProbe( demux_t *p_demux, int64_t *pi_offset )
685 {
686     bool   b_forced;
687     bool   b_forced_demux;
688
689     int64_t i_offset;
690     const uint8_t *p_peek;
691
692     b_forced = demux_IsPathExtension( p_demux, ".aac" ) ||
693                demux_IsPathExtension( p_demux, ".aacp" );
694     b_forced_demux = demux_IsForced( p_demux, "m4a" ) ||
695                      demux_IsForced( p_demux, "aac" ) ||
696                      demux_IsForced( p_demux, "mp4a" );
697
698     if( !b_forced_demux && !b_forced )
699         return VLC_EGENERIC;
700
701     i_offset = stream_Tell( p_demux->s );
702
703     /* peek the begining (10 is for adts header) */
704     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
705     {
706         msg_Err( p_demux, "cannot peek" );
707         return VLC_EGENERIC;
708     }
709     if( !strncmp( (char *)p_peek, "ADIF", 4 ) )
710     {
711         msg_Err( p_demux, "ADIF file. Not yet supported. (Please report)" );
712         return VLC_EGENERIC;
713     }
714
715     *pi_offset = i_offset;
716     return VLC_SUCCESS;
717 }
718 static int AacInit( demux_t *p_demux )
719 {
720     demux_sys_t *p_sys = p_demux->p_sys;
721
722     p_sys->i_packet_size = 4096;
723
724     return VLC_SUCCESS;
725 }
726
727
728 /*****************************************************************************
729  * A52
730  *****************************************************************************/
731 static int A52CheckSync( const uint8_t *p_peek, bool *p_big_endian, bool b_eac3 )
732 {
733     vlc_a52_header_t header;
734     uint8_t p_tmp[VLC_A52_HEADER_SIZE];
735
736     *p_big_endian =  p_peek[0] == 0x0b && p_peek[1] == 0x77;
737     if( !*p_big_endian )
738     {
739         swab( p_peek, p_tmp, VLC_A52_HEADER_SIZE );
740         p_peek = p_tmp;
741     }
742
743     if( vlc_a52_header_Parse( &header, p_peek, VLC_A52_HEADER_SIZE ) )
744         return VLC_EGENERIC;
745
746     if( !header.b_eac3 != !b_eac3 )
747         return VLC_EGENERIC;
748     return header.i_size;
749 }
750 static int EA52CheckSyncProbe( const uint8_t *p_peek )
751 {
752     bool b_dummy;
753     return A52CheckSync( p_peek, &b_dummy, true );
754 }
755
756 static int EA52Probe( demux_t *p_demux, int64_t *pi_offset )
757 {
758     const char *ppsz_name[] = { "eac3", NULL };
759     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_A52, WAVE_FORMAT_UNKNOWN };
760
761     return GenericProbe( p_demux, pi_offset, ppsz_name, EA52CheckSyncProbe, VLC_A52_HEADER_SIZE, pi_wav );
762 }
763
764 static int A52CheckSyncProbe( const uint8_t *p_peek )
765 {
766     bool b_dummy;
767     return A52CheckSync( p_peek, &b_dummy, false );
768 }
769
770 static int A52Probe( demux_t *p_demux, int64_t *pi_offset )
771 {
772     const char *ppsz_name[] = { "a52", "ac3", NULL };
773     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_A52, WAVE_FORMAT_UNKNOWN };
774
775     return GenericProbe( p_demux, pi_offset, ppsz_name, A52CheckSyncProbe, VLC_A52_HEADER_SIZE, pi_wav );
776 }
777
778 static int A52Init( demux_t *p_demux )
779 {
780     demux_sys_t *p_sys = p_demux->p_sys;
781
782     p_sys->b_big_endian = false;
783     p_sys->i_packet_size = 1024;
784
785     const uint8_t *p_peek;
786
787     /* peek the begining */
788     if( stream_Peek( p_demux->s, &p_peek, VLC_A52_HEADER_SIZE ) >= VLC_A52_HEADER_SIZE )
789     {
790         A52CheckSync( p_peek, &p_sys->b_big_endian, true );
791     }
792     return VLC_SUCCESS;
793 }
794
795 /*****************************************************************************
796  * DTS
797  *****************************************************************************/
798 static int DtsCheckSync( const uint8_t *p_peek )
799 {
800     /* TODO return frame size for robustness */
801
802     /* 14 bits, little endian version of the bitstream */
803     if( p_peek[0] == 0xff && p_peek[1] == 0x1f &&
804         p_peek[2] == 0x00 && p_peek[3] == 0xe8 &&
805         (p_peek[4] & 0xf0) == 0xf0 && p_peek[5] == 0x07 )
806     {
807         return 0;
808     }
809     /* 14 bits, big endian version of the bitstream */
810     else if( p_peek[0] == 0x1f && p_peek[1] == 0xff &&
811              p_peek[2] == 0xe8 && p_peek[3] == 0x00 &&
812              p_peek[4] == 0x07 && (p_peek[5] & 0xf0) == 0xf0)
813     {
814         return 0;
815     }
816     /* 16 bits, big endian version of the bitstream */
817     else if( p_peek[0] == 0x7f && p_peek[1] == 0xfe &&
818              p_peek[2] == 0x80 && p_peek[3] == 0x01 )
819     {
820         return 0;
821     }
822     /* 16 bits, little endian version of the bitstream */
823     else if( p_peek[0] == 0xfe && p_peek[1] == 0x7f &&
824              p_peek[2] == 0x01 && p_peek[3] == 0x80 )
825     {
826         return 0;
827     }
828
829     return VLC_EGENERIC;
830 }
831
832 static int DtsProbe( demux_t *p_demux, int64_t *pi_offset )
833 {
834     const char *ppsz_name[] = { "dts", NULL };
835     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_DTS, WAVE_FORMAT_UNKNOWN };
836
837     return GenericProbe( p_demux, pi_offset, ppsz_name, DtsCheckSync, 11, pi_wav );
838 }
839 static int DtsInit( demux_t *p_demux )
840 {
841     demux_sys_t *p_sys = p_demux->p_sys;
842
843     p_sys->i_packet_size = 16384;
844
845     return VLC_SUCCESS;
846 }
847
848 /*****************************************************************************
849  * MLP
850  *****************************************************************************/
851 static int MlpCheckSync( const uint8_t *p_peek )
852 {
853     if( p_peek[4+0] != 0xf8 || p_peek[4+1] != 0x72 || p_peek[4+2] != 0x6f )
854         return -1;
855
856     if( p_peek[4+3] != 0xba && p_peek[4+3] != 0xbb )
857         return -1;
858
859     /* TODO checksum and real size for robustness */
860     return 0;
861 }
862 static int MlpProbe( demux_t *p_demux, int64_t *pi_offset )
863 {
864     const char *ppsz_name[] = { "mlp", "thd", NULL };
865     const int pi_wav[] = { WAVE_FORMAT_PCM, WAVE_FORMAT_UNKNOWN };
866
867     return GenericProbe( p_demux, pi_offset, ppsz_name, MlpCheckSync, 4+28+16*4, pi_wav );
868 }
869 static int MlpInit( demux_t *p_demux )
870
871 {
872     demux_sys_t *p_sys = p_demux->p_sys;
873
874     p_sys->i_packet_size = 4096;
875
876     return VLC_SUCCESS;
877 }
878