]> git.sesse.net Git - vlc/blob - modules/codec/mpeg_audio.c
* modules/codec/mpeg_audio.c: attempt at fixing free-bitrate mp3, though
[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.5 2003/01/16 14:08:39 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 (511 + 2048)
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             p_dec->p_aout_input = aout_DecNew( p_dec->p_fifo,
276                                                &p_dec->p_aout,
277                                                &p_dec->output_format );
278
279             if ( p_dec->p_aout_input == NULL )
280             {
281                 p_dec->p_fifo->b_error = 1;
282                 break;
283             }
284         }
285
286         if ( !aout_DateGet( &end_date ) )
287         {
288             byte_t p_junk[MAX_FRAME_SIZE];
289
290             /* We've just started the stream, wait for the first PTS. */
291             GetChunk( &p_dec->bit_stream, p_junk, i_current_frame_size
292                         - MAD_BUFFER_GUARD );
293             NextPTS( &p_dec->bit_stream, &pts, NULL );
294             GetChunk( &p_dec->bit_stream, p_sync, MAD_BUFFER_GUARD );
295             continue;
296         }
297
298         p_buffer = aout_DecNewBuffer( p_dec->p_aout, p_dec->p_aout_input,
299                                       i_frame_length );
300         if ( p_buffer == NULL )
301         {
302             p_dec->p_fifo->b_error = 1;
303             break;
304         }
305         p_buffer->start_date = aout_DateGet( &end_date );
306         p_buffer->end_date = aout_DateIncrement( &end_date,
307                                                  i_frame_length );
308
309         /* Get the whole frame. */
310         memcpy( p_buffer->p_buffer, p_sync, MAD_BUFFER_GUARD );
311         if ( i_current_frame_size )
312         {
313             GetChunk( &p_dec->bit_stream, p_buffer->p_buffer + MAD_BUFFER_GUARD,
314                       i_current_frame_size - MAD_BUFFER_GUARD );
315         }
316         else
317         {
318             /* Free bit-rate stream. Peek at next frame header. */
319             i = MAD_BUFFER_GUARD;
320             for ( ; ; )
321             {
322                 int i_next_real_frame_size;
323                 unsigned int i_next_channels, i_next_rate, i_next_bit_rate;
324                 unsigned int i_next_frame_length, i_next_frame_size;
325                 unsigned int i_next_layer;
326                 while ( ShowBits( &p_dec->bit_stream, 11 ) != 0x07ff &&
327                         (!p_dec->p_fifo->b_die) &&
328                         (!p_dec->p_fifo->b_error) &&
329                         i < (int)i_frame_size + MAD_BUFFER_GUARD )
330                 {
331                     ((uint8_t *)p_buffer->p_buffer)[i++] =
332                                 GetBits( &p_dec->bit_stream, 8 );
333                 }
334                 if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error
335                       || i == (int)i_frame_size + MAD_BUFFER_GUARD )
336                     break;
337                 i_header = ShowBits( &p_dec->bit_stream, 8 );
338                 i_next_real_frame_size = SyncInfo( i_header,
339                                          &i_next_channels, &i_next_rate,
340                                          &i_next_bit_rate, &i_next_frame_length,
341                                          &i_next_frame_size, &i_next_layer );
342                 if ( i_next_real_frame_size != 0 ||
343                      i_next_channels != i_original_channels ||
344                      i_next_rate != i_rate ||
345                      i_next_bit_rate != i_bit_rate ||
346                      i_next_frame_length != i_frame_length ||
347                      i_next_frame_size != i_frame_size ||
348                      i_next_layer != i_new_layer )
349                 {
350                     /* This is an emulated start code, try again. */
351                     continue;
352                 }
353                 i_free_frame_size = i;
354                 break;
355             }
356             if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error )
357                 break;
358             if ( i == (int)i_frame_size + MAD_BUFFER_GUARD )
359             {
360                 /* Couldn't find the next start-code. This is sooo
361                  * embarassing. */
362                 aout_DecDeleteBuffer( p_dec->p_aout, p_dec->p_aout_input,
363                                       p_buffer );
364                 NextPTS( &p_dec->bit_stream, &pts, NULL );
365                 GetChunk( &p_dec->bit_stream, p_sync, MAD_BUFFER_GUARD );
366                 continue;
367             }
368         }
369         if( p_dec->p_fifo->b_die )
370         {
371             aout_DecDeleteBuffer( p_dec->p_aout, p_dec->p_aout_input,
372                                   p_buffer );
373             break;
374         }
375         /* Get beginning of next frame. */
376         NextPTS( &p_dec->bit_stream, &pts, NULL );
377         GetChunk( &p_dec->bit_stream, p_buffer->p_buffer + i_current_frame_size,
378                   MAD_BUFFER_GUARD );
379         memcpy( p_sync, p_buffer->p_buffer + i_current_frame_size,
380                 MAD_BUFFER_GUARD );
381
382         p_buffer->i_nb_bytes = i_current_frame_size + MAD_BUFFER_GUARD;
383
384         /* Send the buffer to the aout core. */
385         aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_buffer );
386     }
387
388     if( p_dec->p_fifo->b_error )
389     {
390         DecoderError( p_dec->p_fifo );
391     }
392
393     EndThread( p_dec );
394
395     return 0;
396 }
397
398 /*****************************************************************************
399  * EndThread : thread destruction
400  *****************************************************************************/
401 static void EndThread( dec_thread_t * p_dec )
402 {
403     if ( p_dec->p_aout_input != NULL )
404     {
405         aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
406     }
407
408     CloseBitstream( &p_dec->bit_stream );
409     free( p_dec );
410 }
411
412 /*****************************************************************************
413  * SyncInfo: parse MPEG audio sync info
414  *****************************************************************************/
415 static int SyncInfo( uint32_t i_header, unsigned int * pi_channels,
416                      unsigned int * pi_sample_rate, unsigned int * pi_bit_rate,
417                      unsigned int * pi_frame_length,
418                      unsigned int * pi_frame_size, unsigned int * pi_layer )
419 {
420     static const int pppi_mpegaudio_bitrate[2][3][16] =
421     {
422         {
423             /* v1 l1 */
424             { 0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384,
425               416, 448, 0},
426             /* v1 l2 */
427             { 0, 32, 48, 56,  64,  80,  96, 112, 128, 160, 192, 224, 256,
428               320, 384, 0},
429             /* v1 l3 */
430             { 0, 32, 40, 48,  56,  64,  80,  96, 112, 128, 160, 192, 224,
431               256, 320, 0} 
432         },
433
434         {
435             /* v2 l1 */
436             { 0, 32, 48, 56,  64,  80,  96, 112, 128, 144, 160, 176, 192,
437               224, 256, 0},
438             /* v2 l2 */
439             { 0,  8, 16, 24,  32,  40,  48,  56,  64,  80,  96, 112, 128,
440               144, 160, 0},
441             /* v2 l3 */
442             { 0,  8, 16, 24,  32,  40,  48,  56,  64,  80,  96, 112, 128,
443               144, 160, 0} 
444         }
445     };
446
447     static const int ppi_mpegaudio_samplerate[2][4] = /* version 1 then 2 */
448     {
449         { 44100, 48000, 32000, 0 },
450         { 22050, 24000, 16000, 0 }
451     };
452
453     int i_version, i_mode, i_emphasis;
454     vlc_bool_t b_padding, b_mpeg_2_5;
455     int i_current_frame_size = 0;
456     int i_bitrate_index, i_samplerate_index;
457     int i_max_bit_rate;
458
459     b_mpeg_2_5  = 1 - ((i_header & 0x100000) >> 20);
460     i_version   = 1 - ((i_header & 0x80000) >> 19);
461     *pi_layer   = 4 - ((i_header & 0x60000) >> 17);
462     /* CRC */
463     i_bitrate_index = (i_header & 0xf000) >> 12;
464     i_samplerate_index = (i_header & 0xc00) >> 10;
465     b_padding   = (i_header & 0x200) >> 9;
466     /* Extension */
467     i_mode      = (i_header & 0xc0) >> 6;
468     /* Modeext, copyright & original */
469     i_emphasis  = i_header & 0x3;
470
471     if( *pi_layer != 4 &&
472         i_bitrate_index < 0x0f &&
473         i_samplerate_index != 0x03 &&
474         i_emphasis != 0x02 )
475     {
476         switch ( i_mode )
477         {
478         case 0: /* stereo */
479         case 1: /* joint stereo */
480             *pi_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
481             break;
482         case 2: /* dual-mono */
483             *pi_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
484                             | AOUT_CHAN_DUALMONO;
485             break;
486         case 3: /* mono */
487             *pi_channels = AOUT_CHAN_CENTER;
488             break;
489         }
490         *pi_bit_rate = pppi_mpegaudio_bitrate[i_version][*pi_layer-1][i_bitrate_index];
491         i_max_bit_rate = pppi_mpegaudio_bitrate[i_version][*pi_layer-1][14];
492         *pi_sample_rate = ppi_mpegaudio_samplerate[i_version][i_samplerate_index];
493
494         if ( b_mpeg_2_5 )
495         {
496             *pi_sample_rate >>= 1;
497         }
498
499         switch( *pi_layer )
500         {
501         case 1:
502             i_current_frame_size = ( ( i_version ? 6000 : 12000 ) *
503                                         *pi_bit_rate / *pi_sample_rate
504                                         + b_padding ) * 4;
505             *pi_frame_size = ( ( i_version ? 6000 : 12000 ) *
506                                   i_max_bit_rate / *pi_sample_rate + 1 ) * 4;
507             *pi_frame_length = 384;
508             break;
509
510         case 2:
511             i_current_frame_size = ( i_version ? 72000 : 144000 ) *
512                                       *pi_bit_rate / *pi_sample_rate
513                                       + b_padding;
514             *pi_frame_size = ( i_version ? 72000 : 144000 ) *
515                                       i_max_bit_rate / *pi_sample_rate + 1;
516             *pi_frame_length = 1152;
517             break;
518
519         case 3:
520             i_current_frame_size = ( i_version ? 72000 : 144000 ) *
521                                       *pi_bit_rate / *pi_sample_rate
522                                       + b_padding;
523             *pi_frame_size = ( i_version ? 72000 : 144000 ) *
524                                       i_max_bit_rate / *pi_sample_rate + 1;
525             *pi_frame_length = i_version ? 576 : 1152;
526             break;
527
528         default:
529         }
530     }
531     else
532     {
533         return -1;
534     }
535     
536     return i_current_frame_size;
537 }
538