]> git.sesse.net Git - vlc/blob - modules/codec/mpeg_audio.c
* Totally rewrote the mad plug-in, in order to fix the PTS problems :
[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.1 2003/01/15 10:58:47 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
117     /* Allocate the memory needed to store the thread's structure */
118     p_dec = malloc( sizeof(dec_thread_t) );
119     if( p_dec == NULL )
120     {
121         msg_Err( p_fifo, "out of memory" );
122         DecoderError( p_fifo );
123         return -1;
124     }
125
126     /* Initialize the thread properties */
127     p_dec->p_aout = NULL;
128     p_dec->p_aout_input = NULL;
129     p_dec->p_fifo = p_fifo;
130
131     aout_DateSet( &end_date, 0 );
132
133     /* Init the bitstream */
134     if( InitBitstream( &p_dec->bit_stream, p_dec->p_fifo,
135                        NULL, NULL ) != VLC_SUCCESS )
136     {
137         msg_Err( p_fifo, "cannot initialize bitstream" );
138         DecoderError( p_fifo );
139         free( p_dec );
140         return -1;
141     }
142
143     /* Decoder thread's main loop */
144     while ( !p_dec->p_fifo->b_die && !p_dec->p_fifo->b_error )
145     {
146         int i_bit_rate;
147         unsigned int i_rate, i_original_channels, i_frame_size, i_frame_length;
148         unsigned int i_new_layer, i_current_frame_size;
149         mtime_t pts;
150         uint32_t i_header;
151         aout_buffer_t * p_buffer;
152
153         /* Look for sync word - should be 0xfff */
154         RealignBits( &p_dec->bit_stream );
155         if ( ShowBits( &p_dec->bit_stream, 11 ) != 0x07ff )
156         {
157             msg_Warn( p_dec->p_fifo, "no sync - skipping" );
158         }
159         while ( ShowBits( &p_dec->bit_stream, 11 ) != 0x07ff &&
160                 (!p_dec->p_fifo->b_die) && (!p_dec->p_fifo->b_error) )
161         {
162             RemoveBits( &p_dec->bit_stream, 8 );
163         }
164         if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error ) break;
165
166         /* Set the Presentation Time Stamp */
167         NextPTS( &p_dec->bit_stream, &pts, NULL );
168         if ( pts != 0 && pts != aout_DateGet( &end_date ) )
169         {
170             aout_DateSet( &end_date, pts );
171         }
172
173         /* Get frame header */
174         i_header = ShowBits( &p_dec->bit_stream, 32 );
175         if ( p_dec->p_fifo->b_die || p_dec->p_fifo->b_error ) break;
176
177         /* Check if frame is valid and get frame info */
178         i_current_frame_size = SyncInfo( i_header,
179                                          &i_original_channels, &i_rate,
180                                          &i_bit_rate, &i_frame_length,
181                                          &i_frame_size, &i_new_layer );
182
183         if( !i_current_frame_size )
184         {
185             msg_Warn( p_dec->p_fifo, "syncinfo failed" );
186             continue;
187         }
188
189         if( (p_dec->p_aout_input != NULL) &&
190             ( (p_dec->output_format.i_rate != i_rate)
191                 || (p_dec->output_format.i_original_channels
192                       != i_original_channels)
193                 || (p_dec->output_format.i_bytes_per_frame
194                       != i_frame_size + MAD_BUFFER_GUARD)
195                 || (p_dec->output_format.i_frame_length != i_frame_length)
196                 || (i_layer != i_new_layer) ) )
197         {
198             /* Parameters changed - this should not happen. */
199             aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
200             p_dec->p_aout_input = NULL;
201         }
202
203         /* Creating the audio input if not created yet. */
204         if( p_dec->p_aout_input == NULL )
205         {
206             i_layer = i_new_layer;
207             if ( i_layer == 3 )
208             {
209                 p_dec->output_format.i_format = VLC_FOURCC('m','p','g','3');
210             }
211             else
212             {
213                 p_dec->output_format.i_format = VLC_FOURCC('m','p','g','a');
214             }
215             p_dec->output_format.i_rate = i_rate;
216             p_dec->output_format.i_original_channels = i_original_channels;
217             p_dec->output_format.i_physical_channels
218                        = i_original_channels & AOUT_CHAN_PHYSMASK;
219             p_dec->output_format.i_bytes_per_frame = i_frame_size
220                                                         + MAD_BUFFER_GUARD;
221             p_dec->output_format.i_frame_length = i_frame_length;
222             aout_DateInit( &end_date, i_rate );
223             p_dec->p_aout_input = aout_DecNew( p_dec->p_fifo,
224                                                &p_dec->p_aout,
225                                                &p_dec->output_format );
226
227             if ( p_dec->p_aout_input == NULL )
228             {
229                 p_dec->p_fifo->b_error = 1;
230                 break;
231             }
232         }
233
234         if ( !aout_DateGet( &end_date ) )
235         {
236             byte_t p_junk[MAX_FRAME_SIZE];
237
238             /* We've just started the stream, wait for the first PTS. */
239             GetChunk( &p_dec->bit_stream, p_junk, i_frame_size );
240             continue;
241         }
242
243         p_buffer = aout_DecNewBuffer( p_dec->p_aout, p_dec->p_aout_input,
244                                       i_frame_length );
245         if ( p_buffer == NULL )
246         {
247             p_dec->p_fifo->b_error = 1;
248             break;
249         }
250         p_buffer->start_date = aout_DateGet( &end_date );
251         p_buffer->end_date = aout_DateIncrement( &end_date,
252                                                  i_frame_length );
253
254         /* Get the whole frame. */
255         GetChunk( &p_dec->bit_stream, p_buffer->p_buffer,
256                   i_current_frame_size );
257         if( p_dec->p_fifo->b_die )
258         {
259             aout_DecDeleteBuffer( p_dec->p_aout, p_dec->p_aout_input,
260                                   p_buffer );
261             break;
262         }
263
264         /* Send the buffer to the aout core. */
265         aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_buffer );
266     }
267
268     if( p_dec->p_fifo->b_error )
269     {
270         DecoderError( p_dec->p_fifo );
271     }
272
273     EndThread( p_dec );
274
275     return 0;
276 }
277
278 /*****************************************************************************
279  * EndThread : thread destruction
280  *****************************************************************************/
281 static void EndThread( dec_thread_t * p_dec )
282 {
283     if ( p_dec->p_aout_input != NULL )
284     {
285         aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
286     }
287
288     CloseBitstream( &p_dec->bit_stream );
289     free( p_dec );
290 }
291
292 /*****************************************************************************
293  * SyncInfo: parse MPEG audio sync info
294  *****************************************************************************/
295 static int SyncInfo( uint32_t i_header, unsigned int * pi_channels,
296                      unsigned int * pi_sample_rate, unsigned int * pi_bit_rate,
297                      unsigned int * pi_frame_length,
298                      unsigned int * pi_frame_size, unsigned int * pi_layer )
299 {
300     static const int pppi_mpegaudio_bitrate[2][3][16] =
301     {
302         {
303             /* v1 l1 */
304             { 0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384,
305               416, 448, 0},
306             /* v1 l2 */
307             { 0, 32, 48, 56,  64,  80,  96, 112, 128, 160, 192, 224, 256,
308               320, 384, 0},
309             /* v1 l3 */
310             { 0, 32, 40, 48,  56,  64,  80,  96, 112, 128, 160, 192, 224,
311               256, 320, 0} 
312         },
313
314         {
315             /* v2 l1 */
316             { 0, 32, 48, 56,  64,  80,  96, 112, 128, 144, 160, 176, 192,
317               224, 256, 0},
318             /* v2 l2 */
319             { 0,  8, 16, 24,  32,  40,  48,  56,  64,  80,  96, 112, 128,
320               144, 160, 0},
321             /* v2 l3 */
322             { 0,  8, 16, 24,  32,  40,  48,  56,  64,  80,  96, 112, 128,
323               144, 160, 0} 
324         }
325     };
326
327     static const int ppi_mpegaudio_samplerate[2][4] = /* version 1 then 2 */
328     {
329         { 44100, 48000, 32000, 0 },
330         { 22050, 24000, 16000, 0 }
331     };
332
333     int i_version, i_mode, i_emphasis;
334     vlc_bool_t b_padding, b_mpeg_2_5;
335     int i_current_frame_size = 0;
336     int i_bitrate_index, i_samplerate_index;
337
338     b_mpeg_2_5  = 1 - ((i_header & 0x100000) >> 20);
339     i_version   = 1 - ((i_header & 0x80000) >> 19);
340     *pi_layer   = 4 - ((i_header & 0x60000) >> 17);
341     /* CRC */
342     i_bitrate_index = (i_header & 0xf000) >> 12;
343     i_samplerate_index = (i_header & 0xc00) >> 10;
344     b_padding   = (i_header & 0x200) >> 9;
345     /* Extension */
346     i_mode      = (i_header & 0xc0) >> 6;
347     /* Modeext, copyright & original */
348     i_emphasis  = i_header & 0x3;
349
350     if( *pi_layer != 4 &&
351         i_bitrate_index > 0x00 && i_bitrate_index < 0x0f &&
352         i_samplerate_index != 0x03 &&
353         i_emphasis != 0x02 )
354     {
355         switch ( i_mode )
356         {
357         case 0: /* stereo */
358         case 1: /* joint stereo */
359             *pi_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
360             break;
361         case 2: /* dual-mono */
362             *pi_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
363                             | AOUT_CHAN_DUALMONO;
364             break;
365         case 3: /* mono */
366             *pi_channels = AOUT_CHAN_CENTER;
367             break;
368         }
369         *pi_bit_rate = pppi_mpegaudio_bitrate[i_version][*pi_layer-1][i_bitrate_index];
370         *pi_sample_rate = ppi_mpegaudio_samplerate[i_version][i_samplerate_index];
371
372         if ( b_mpeg_2_5 )
373         {
374             *pi_sample_rate >>= 1;
375         }
376
377         switch( *pi_layer -1 )
378         {
379         case 0:
380             i_current_frame_size = ( ( i_version ? 6000 : 12000 ) *
381                                         *pi_bit_rate / *pi_sample_rate
382                                         + b_padding ) * 4;
383             *pi_frame_size = ( ( i_version ? 6000 : 12000 ) *
384                                   *pi_bit_rate / *pi_sample_rate + 1 ) * 4;
385             *pi_frame_length = 384;
386             break;
387
388         case 1:
389             i_current_frame_size = ( i_version ? 72000 : 144000 ) *
390                                       *pi_bit_rate / *pi_sample_rate
391                                       + b_padding;
392             *pi_frame_size = ( i_version ? 72000 : 144000 ) *
393                                       *pi_bit_rate / *pi_sample_rate + 1;
394             *pi_frame_length = 1152;
395             break;
396
397         case 2:
398             i_current_frame_size = ( i_version ? 72000 : 144000 ) *
399                                       *pi_bit_rate / *pi_sample_rate
400                                       + b_padding;
401             *pi_frame_size = ( i_version ? 72000 : 144000 ) *
402                                       *pi_bit_rate / *pi_sample_rate + 1;
403             *pi_frame_length = i_version ? 576 : 1152;
404             break;
405
406         default:
407             i_current_frame_size = *pi_frame_size = 0;
408             *pi_frame_length = 0;
409         }
410     }
411     
412     return i_current_frame_size;
413 }