]> git.sesse.net Git - vlc/blob - modules/codec/mpeg_audio.c
* modules/codec/*: Fixed a PTS bug at the initialization of some codecs
[vlc] / modules / codec / mpeg_audio.c
1 /*****************************************************************************
2  * mpeg_audio.c: parse MPEG audio sync info and packetize the stream
3  *****************************************************************************
4  * Copyright (C) 2001-2003 VideoLAN
5  * $Id: mpeg_audio.c,v 1.14 2003/03/31 22:39:28 massiot Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Eric Petit <titer@videolan.org>
9  *          Christophe Massiot <massiot@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdlib.h>                                      /* malloc(), free() */
30 #include <string.h>                                              /* strdup() */
31
32 #include <vlc/vlc.h>
33 #include <vlc/aout.h>
34 #include <vlc/decoder.h>
35
36 /*****************************************************************************
37  * dec_thread_t : decoder thread descriptor
38  *****************************************************************************/
39 typedef struct dec_thread_t
40 {
41     /*
42      * Thread properties
43      */
44     vlc_thread_t        thread_id;                /* id for thread functions */
45
46     /*
47      * Input properties
48      */
49     decoder_fifo_t *    p_fifo;                /* stores the PES stream data */
50     bit_stream_t        bit_stream;
51
52     /*
53      * Output properties
54      */
55     aout_instance_t *   p_aout; /* opaque */
56     aout_input_t *      p_aout_input; /* opaque */
57     audio_sample_format_t output_format;
58 } dec_thread_t;
59
60 #define MAX_FRAME_SIZE 10000
61 /* This isn't the place to put mad-specific stuff. However, it makes the
62  * mad plug-in's life much easier if we put 8 extra bytes at the end of the
63  * buffer, because that way it doesn't have to copy the aout_buffer_t to a
64  * bigger buffer. This has no implication on other plug-ins, and we only
65  * lose 8 bytes per frame. --Meuuh */
66 #define MAD_BUFFER_GUARD 8
67
68
69 /****************************************************************************
70  * Local prototypes
71  ****************************************************************************/
72 static int  Open           ( vlc_object_t * );
73 static int  RunDecoder     ( decoder_fifo_t * );
74
75 static void EndThread      ( dec_thread_t * );
76
77 static int SyncInfo( uint32_t i_header, unsigned int * pi_channels,
78                      unsigned int * pi_sample_rate, unsigned int * pi_bit_rate,
79                      unsigned int * pi_frame_length,
80                      unsigned int * pi_current_frame_length,
81                      unsigned int * pi_layer );
82
83 /*****************************************************************************
84  * Module descriptor
85  *****************************************************************************/
86 vlc_module_begin();
87     set_description( _("MPEG audio layer I/II/III parser") );
88     set_capability( "decoder", 100 );
89     set_callbacks( Open, NULL );
90 vlc_module_end();
91
92 /*****************************************************************************
93  * OpenDecoder: probe the decoder and return score
94  *****************************************************************************/
95 static int Open( vlc_object_t *p_this )
96 {
97     decoder_fifo_t *p_fifo = (decoder_fifo_t*) p_this;
98
99     if( p_fifo->i_fourcc != VLC_FOURCC( 'm', 'p', 'g', 'a') )
100     {
101         return VLC_EGENERIC;
102     }
103
104     p_fifo->pf_run = RunDecoder;
105     return VLC_SUCCESS;
106 }
107
108 /*****************************************************************************
109  * RunDecoder: this function is called just after the thread is created
110  *****************************************************************************/
111 static int RunDecoder( decoder_fifo_t *p_fifo )
112 {
113     dec_thread_t * p_dec;
114     audio_date_t end_date;
115     unsigned int i_layer = 0;
116     byte_t p_sync[MAD_BUFFER_GUARD];
117     mtime_t pts;
118     int i_free_frame_size = 0;
119
120     /* Allocate the memory needed to store the thread's structure */
121     p_dec = malloc( sizeof(dec_thread_t) );
122     if( p_dec == NULL )
123     {
124         msg_Err( p_fifo, "out of memory" );
125         DecoderError( p_fifo );
126         return -1;
127     }
128
129     /* Initialize the thread properties */
130     p_dec->p_aout = NULL;
131     p_dec->p_aout_input = NULL;
132     p_dec->p_fifo = p_fifo;
133
134     aout_DateSet( &end_date, 0 );
135
136     /* Init the bitstream */
137     if( InitBitstream( &p_dec->bit_stream, p_dec->p_fifo,
138                        NULL, NULL ) != VLC_SUCCESS )
139     {
140         msg_Err( p_fifo, "cannot initialize bitstream" );
141         DecoderError( p_fifo );
142         free( p_dec );
143         return -1;
144     }
145
146     /* Init sync buffer. */
147     NextPTS( &p_dec->bit_stream, &pts, NULL );
148     GetChunk( &p_dec->bit_stream, p_sync, MAD_BUFFER_GUARD );
149
150     /* Decoder thread's main loop */
151     while ( !p_dec->p_fifo->b_die && !p_dec->p_fifo->b_error )
152     {
153         int i_current_frame_size;
154         unsigned int i_rate, i_original_channels, i_frame_size, i_frame_length;
155         unsigned int i_new_layer, i_bit_rate;
156         uint32_t i_header;
157         aout_buffer_t * p_buffer;
158         int i;
159
160         /* Look for sync word - should be 0xffe */
161         if ( (p_sync[0] != 0xff) || ((p_sync[1] & 0xe0) != 0xe0) )
162         {
163             msg_Warn( p_dec->p_fifo, "no sync - skipping" );
164             /* Look inside the sync buffer. */
165             for ( i = 1; i < MAD_BUFFER_GUARD - 1; i++ )
166             {
167                 if ( (p_sync[i] == 0xff) && ((p_sync[i + 1] & 0xe0) == 0xe0) )
168                     break;
169             }
170             if ( i < MAD_BUFFER_GUARD - 1 )
171             {
172                 /* Found it ! */
173                 memmove( p_sync, &p_sync[i], MAD_BUFFER_GUARD - i );
174                 GetChunk( &p_dec->bit_stream, &p_sync[MAD_BUFFER_GUARD - i],
175                           i );
176             }
177             else
178             {
179                 if ( p_sync[MAD_BUFFER_GUARD - 1] == 0xff
180                       && ShowBits( &p_dec->bit_stream, 3 ) == 0x3 )
181                 {
182                     /* Found it ! */
183                     p_sync[0] = p_sync[MAD_BUFFER_GUARD - 1];
184                     GetChunk( &p_dec->bit_stream,
185                               &p_sync[1], MAD_BUFFER_GUARD - 1 );
186                 }
187                 else
188                 {
189                     /* Scan the stream. */
190                     while ( ShowBits( &p_dec->bit_stream, 11 ) != 0x07ff &&
191                             (!p_dec->p_fifo->b_die) &&
192                             (!p_dec->p_fifo->b_error) )
193                     {
194                         RemoveBits( &p_dec->bit_stream, 8 );
195                     }
196                     if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error )
197                         break;
198                     NextPTS( &p_dec->bit_stream, &pts, NULL );
199                     GetChunk( &p_dec->bit_stream,p_sync, MAD_BUFFER_GUARD );
200                 }
201             }
202         }
203         if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error ) break;
204
205         /* Set the Presentation Time Stamp */
206         if ( pts != 0 && pts != aout_DateGet( &end_date ) )
207         {
208             aout_DateSet( &end_date, pts );
209         }
210
211         /* Get frame header */
212         i_header = (p_sync[0] << 24) | (p_sync[1] << 16) | (p_sync[2] << 8)
213                      | p_sync[3];
214
215         /* Check if frame is valid and get frame info */
216         i_current_frame_size = SyncInfo( i_header,
217                                          &i_original_channels, &i_rate,
218                                          &i_bit_rate, &i_frame_length,
219                                          &i_frame_size, &i_new_layer );
220         if ( !i_current_frame_size )
221             i_current_frame_size = i_free_frame_size;
222
223         if ( i_current_frame_size == -1 )
224         {
225             msg_Warn( p_dec->p_fifo, "syncinfo failed" );
226             /* This is probably an emulated startcode, drop the first byte
227              * to force looking for the next startcode. */
228             memmove( p_sync, &p_sync[1], MAD_BUFFER_GUARD - 1 );
229             p_sync[MAD_BUFFER_GUARD - 1] = GetBits( &p_dec->bit_stream, 8 );
230             continue;
231         }
232         if ( (unsigned int)i_current_frame_size > i_frame_size )
233         {
234             msg_Warn( p_dec->p_fifo, "frame too big %d > %d",
235                       i_current_frame_size, i_frame_size );
236             memmove( p_sync, &p_sync[1], MAD_BUFFER_GUARD - 1 );
237             p_sync[MAD_BUFFER_GUARD - 1] = GetBits( &p_dec->bit_stream, 8 );
238             continue;
239         }
240
241         if( (p_dec->p_aout_input != NULL) &&
242             ( (p_dec->output_format.i_rate != i_rate)
243                 || (p_dec->output_format.i_original_channels
244                       != i_original_channels)
245                 || (p_dec->output_format.i_bytes_per_frame
246                       != i_frame_size + MAD_BUFFER_GUARD)
247                 || (p_dec->output_format.i_frame_length != i_frame_length)
248                 || (i_layer != i_new_layer) ) )
249         {
250             /* Parameters changed - this should not happen. */
251             aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
252             p_dec->p_aout_input = NULL;
253         }
254
255         /* Creating the audio input if not created yet. */
256         if( p_dec->p_aout_input == NULL )
257         {
258             i_layer = i_new_layer;
259             if ( i_layer == 3 )
260             {
261                 p_dec->output_format.i_format = VLC_FOURCC('m','p','g','3');
262             }
263             else
264             {
265                 p_dec->output_format.i_format = VLC_FOURCC('m','p','g','a');
266             }
267             p_dec->output_format.i_rate = i_rate;
268             p_dec->output_format.i_original_channels = i_original_channels;
269             p_dec->output_format.i_physical_channels
270                        = i_original_channels & AOUT_CHAN_PHYSMASK;
271             p_dec->output_format.i_bytes_per_frame = i_frame_size
272                                                         + MAD_BUFFER_GUARD;
273             p_dec->output_format.i_frame_length = i_frame_length;
274             aout_DateInit( &end_date, i_rate );
275             aout_DateSet( &end_date, pts );
276             p_dec->p_aout_input = aout_DecNew( p_dec->p_fifo,
277                                                &p_dec->p_aout,
278                                                &p_dec->output_format );
279
280             if ( p_dec->p_aout_input == NULL )
281             {
282                 p_dec->p_fifo->b_error = 1;
283                 break;
284             }
285         }
286
287         if ( !aout_DateGet( &end_date ) )
288         {
289             byte_t p_junk[MAX_FRAME_SIZE];
290             int    i_skip = i_current_frame_size - MAD_BUFFER_GUARD;
291
292             /* We've just started the stream, wait for the first PTS. */
293             while( i_skip > 0 )
294             {
295                 int i_read;
296
297                 i_read = __MIN( i_current_frame_size  - MAD_BUFFER_GUARD, MAX_FRAME_SIZE );
298                 GetChunk( &p_dec->bit_stream, p_junk, i_read );
299
300                 i_skip -= i_read;
301             }
302             NextPTS( &p_dec->bit_stream, &pts, NULL );
303             GetChunk( &p_dec->bit_stream, p_sync, MAD_BUFFER_GUARD );
304             continue;
305         }
306
307         p_buffer = aout_DecNewBuffer( p_dec->p_aout, p_dec->p_aout_input,
308                                       i_frame_length );
309         if ( p_buffer == NULL )
310         {
311             p_dec->p_fifo->b_error = 1;
312             break;
313         }
314         p_buffer->start_date = aout_DateGet( &end_date );
315         p_buffer->end_date = aout_DateIncrement( &end_date,
316                                                  i_frame_length );
317
318         /* Get the whole frame. */
319         memcpy( p_buffer->p_buffer, p_sync, MAD_BUFFER_GUARD );
320         if ( i_current_frame_size )
321         {
322             GetChunk( &p_dec->bit_stream, p_buffer->p_buffer + MAD_BUFFER_GUARD,
323                       i_current_frame_size - MAD_BUFFER_GUARD );
324         }
325         else
326         {
327             /* Free bit-rate stream. Peek at next frame header. */
328             i = MAD_BUFFER_GUARD;
329             for ( ; ; )
330             {
331                 int i_next_real_frame_size;
332                 unsigned int i_next_channels, i_next_rate, i_next_bit_rate;
333                 unsigned int i_next_frame_length, i_next_frame_size;
334                 unsigned int i_next_layer;
335                 while ( ShowBits( &p_dec->bit_stream, 11 ) != 0x07ff &&
336                         (!p_dec->p_fifo->b_die) &&
337                         (!p_dec->p_fifo->b_error) &&
338                         i < (int)i_frame_size + MAD_BUFFER_GUARD )
339                 {
340                     ((uint8_t *)p_buffer->p_buffer)[i++] =
341                                 GetBits( &p_dec->bit_stream, 8 );
342                 }
343                 if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error
344                       || i == (int)i_frame_size + MAD_BUFFER_GUARD )
345                     break;
346                 i_header = ShowBits( &p_dec->bit_stream, 8 );
347                 i_next_real_frame_size = SyncInfo( i_header,
348                                          &i_next_channels, &i_next_rate,
349                                          &i_next_bit_rate, &i_next_frame_length,
350                                          &i_next_frame_size, &i_next_layer );
351                 if ( i_next_real_frame_size != 0 ||
352                      i_next_channels != i_original_channels ||
353                      i_next_rate != i_rate ||
354                      i_next_bit_rate != i_bit_rate ||
355                      i_next_frame_length != i_frame_length ||
356                      i_next_frame_size != i_frame_size ||
357                      i_next_layer != i_new_layer )
358                 {
359                     /* This is an emulated start code, try again. */
360                     continue;
361                 }
362                 i_free_frame_size = i;
363                 break;
364             }
365             if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error )
366                 break;
367             if ( i == (int)i_frame_size + MAD_BUFFER_GUARD )
368             {
369                 /* Couldn't find the next start-code. This is sooo
370                  * embarassing. */
371                 aout_DecDeleteBuffer( p_dec->p_aout, p_dec->p_aout_input,
372                                       p_buffer );
373                 NextPTS( &p_dec->bit_stream, &pts, NULL );
374                 GetChunk( &p_dec->bit_stream, p_sync, MAD_BUFFER_GUARD );
375                 continue;
376             }
377         }
378         if( p_dec->p_fifo->b_die )
379         {
380             aout_DecDeleteBuffer( p_dec->p_aout, p_dec->p_aout_input,
381                                   p_buffer );
382             break;
383         }
384         /* Get beginning of next frame. */
385         NextPTS( &p_dec->bit_stream, &pts, NULL );
386         GetChunk( &p_dec->bit_stream, p_buffer->p_buffer + i_current_frame_size,
387                   MAD_BUFFER_GUARD );
388         memcpy( p_sync, p_buffer->p_buffer + i_current_frame_size,
389                 MAD_BUFFER_GUARD );
390
391         p_buffer->i_nb_bytes = i_current_frame_size + MAD_BUFFER_GUARD;
392
393         /* Send the buffer to the aout core. */
394         aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_buffer );
395     }
396
397     if( p_dec->p_fifo->b_error )
398     {
399         DecoderError( p_dec->p_fifo );
400     }
401
402     EndThread( p_dec );
403
404     return 0;
405 }
406
407 /*****************************************************************************
408  * EndThread : thread destruction
409  *****************************************************************************/
410 static void EndThread( dec_thread_t * p_dec )
411 {
412     if ( p_dec->p_aout_input != NULL )
413     {
414         aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
415     }
416
417     CloseBitstream( &p_dec->bit_stream );
418     free( p_dec );
419 }
420
421 /*****************************************************************************
422  * SyncInfo: parse MPEG audio sync info
423  *****************************************************************************/
424 static int SyncInfo( uint32_t i_header, unsigned int * pi_channels,
425                      unsigned int * pi_sample_rate, unsigned int * pi_bit_rate,
426                      unsigned int * pi_frame_length,
427                      unsigned int * pi_frame_size, unsigned int * pi_layer )
428 {
429     static const int pppi_mpegaudio_bitrate[2][3][16] =
430     {
431         {
432             /* v1 l1 */
433             { 0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384,
434               416, 448, 0},
435             /* v1 l2 */
436             { 0, 32, 48, 56,  64,  80,  96, 112, 128, 160, 192, 224, 256,
437               320, 384, 0},
438             /* v1 l3 */
439             { 0, 32, 40, 48,  56,  64,  80,  96, 112, 128, 160, 192, 224,
440               256, 320, 0}
441         },
442
443         {
444             /* v2 l1 */
445             { 0, 32, 48, 56,  64,  80,  96, 112, 128, 144, 160, 176, 192,
446               224, 256, 0},
447             /* v2 l2 */
448             { 0,  8, 16, 24,  32,  40,  48,  56,  64,  80,  96, 112, 128,
449               144, 160, 0},
450             /* v2 l3 */
451             { 0,  8, 16, 24,  32,  40,  48,  56,  64,  80,  96, 112, 128,
452               144, 160, 0}
453         }
454     };
455
456     static const int ppi_mpegaudio_samplerate[2][4] = /* version 1 then 2 */
457     {
458         { 44100, 48000, 32000, 0 },
459         { 22050, 24000, 16000, 0 }
460     };
461
462     int i_version, i_mode, i_emphasis;
463     vlc_bool_t b_padding, b_mpeg_2_5;
464     int i_current_frame_size = 0;
465     int i_bitrate_index, i_samplerate_index;
466     int i_max_bit_rate;
467
468     b_mpeg_2_5  = 1 - ((i_header & 0x100000) >> 20);
469     i_version   = 1 - ((i_header & 0x80000) >> 19);
470     *pi_layer   = 4 - ((i_header & 0x60000) >> 17);
471     /* CRC */
472     i_bitrate_index = (i_header & 0xf000) >> 12;
473     i_samplerate_index = (i_header & 0xc00) >> 10;
474     b_padding   = (i_header & 0x200) >> 9;
475     /* Extension */
476     i_mode      = (i_header & 0xc0) >> 6;
477     /* Modeext, copyright & original */
478     i_emphasis  = i_header & 0x3;
479
480     if( *pi_layer != 4 &&
481         i_bitrate_index < 0x0f &&
482         i_samplerate_index != 0x03 &&
483         i_emphasis != 0x02 )
484     {
485         switch ( i_mode )
486         {
487         case 0: /* stereo */
488         case 1: /* joint stereo */
489             *pi_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
490             break;
491         case 2: /* dual-mono */
492             *pi_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
493                             | AOUT_CHAN_DUALMONO;
494             break;
495         case 3: /* mono */
496             *pi_channels = AOUT_CHAN_CENTER;
497             break;
498         }
499         *pi_bit_rate = pppi_mpegaudio_bitrate[i_version][*pi_layer-1][i_bitrate_index];
500         i_max_bit_rate = pppi_mpegaudio_bitrate[i_version][*pi_layer-1][14];
501         *pi_sample_rate = ppi_mpegaudio_samplerate[i_version][i_samplerate_index];
502
503         if ( b_mpeg_2_5 )
504         {
505             *pi_sample_rate >>= 1;
506         }
507
508         switch( *pi_layer )
509         {
510         case 1:
511             i_current_frame_size = ( 12000 *
512                                         *pi_bit_rate / *pi_sample_rate
513                                         + b_padding ) * 4;
514             *pi_frame_size = ( 12000 *
515                                   i_max_bit_rate / *pi_sample_rate + 1 ) * 4;
516             *pi_frame_length = 384;
517             break;
518
519         case 2:
520             i_current_frame_size = 144000 *
521                                       *pi_bit_rate / *pi_sample_rate
522                                       + b_padding;
523             *pi_frame_size = 144000 * i_max_bit_rate / *pi_sample_rate + 1;
524             *pi_frame_length = 1152;
525             break;
526
527         case 3:
528             i_current_frame_size = ( i_version ? 72000 : 144000 ) *
529                                    *pi_bit_rate / *pi_sample_rate + b_padding;
530             *pi_frame_size = ( i_version ? 72000 : 144000 ) *
531                                  i_max_bit_rate / *pi_sample_rate + 1;
532             *pi_frame_length = i_version ? 576 : 1152;
533             break;
534
535         default:
536             break;
537         }
538     }
539     else
540     {
541         return -1;
542     }
543
544     return i_current_frame_size;
545 }
546