1 /*****************************************************************************
2 * mpeg_audio.c: parse MPEG audio sync info and packetize the stream
3 *****************************************************************************
4 * Copyright (C) 2001-2003 the VideoLAN team
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8 * Eric Petit <titer@videolan.org>
9 * Christophe Massiot <massiot@via.ecp.fr>
10 * Gildas Bazin <gbazin@videolan.org>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
27 /*****************************************************************************
29 *****************************************************************************/
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
36 #include <vlc_codec.h>
39 #include <vlc_block_helper.h>
41 /*****************************************************************************
42 * decoder_sys_t : decoder descriptor
43 *****************************************************************************/
54 block_bytestream_t bytestream;
59 audio_date_t end_date;
60 unsigned int i_current_layer;
64 int i_frame_size, i_free_frame_size;
65 unsigned int i_channels_conf, i_channels;
66 unsigned int i_rate, i_max_frame_size, i_frame_length;
67 unsigned int i_layer, i_bit_rate;
82 /* This isn't the place to put mad-specific stuff. However, it makes the
83 * mad plug-in's life much easier if we put 8 extra bytes at the end of the
84 * buffer, because that way it doesn't have to copy the aout_buffer_t to a
85 * bigger buffer. This has no implication on other plug-ins, and we only
86 * lose 8 bytes per frame. --Meuuh */
87 #define MAD_BUFFER_GUARD 8
88 #define MPGA_HEADER_SIZE 4
90 /****************************************************************************
92 ****************************************************************************/
93 static int OpenDecoder ( vlc_object_t * );
94 static int OpenPacketizer( vlc_object_t * );
95 static void CloseDecoder ( vlc_object_t * );
96 static void *DecodeBlock ( decoder_t *, block_t ** );
98 static uint8_t *GetOutBuffer ( decoder_t *, void ** );
99 static aout_buffer_t *GetAoutBuffer( decoder_t * );
100 static block_t *GetSoutBuffer( decoder_t * );
102 static int SyncInfo( uint32_t i_header, unsigned int * pi_channels,
103 unsigned int * pi_channels_conf,
104 unsigned int * pi_sample_rate, unsigned int * pi_bit_rate,
105 unsigned int * pi_frame_length,
106 unsigned int * pi_max_frame_size,
107 unsigned int * pi_layer );
109 /*****************************************************************************
111 *****************************************************************************/
113 set_description( N_("MPEG audio layer I/II/III decoder") )
114 set_category( CAT_INPUT )
115 set_subcategory( SUBCAT_INPUT_ACODEC )
116 #if defined(UNDER_CE)
117 set_capability( "decoder", 5 )
119 set_capability( "decoder", 100 )
121 set_callbacks( OpenDecoder, CloseDecoder )
124 set_description( N_("MPEG audio layer I/II/III packetizer") )
125 set_capability( "packetizer", 10 )
126 set_callbacks( OpenPacketizer, CloseDecoder )
129 /*****************************************************************************
130 * Open: probe the decoder and return score
131 *****************************************************************************/
132 static int Open( vlc_object_t *p_this )
134 decoder_t *p_dec = (decoder_t*)p_this;
135 decoder_sys_t *p_sys;
137 if( p_dec->fmt_in.i_codec != VLC_FOURCC('m','p','g','a') )
142 /* Allocate the memory needed to store the decoder's structure */
143 if( ( p_dec->p_sys = p_sys =
144 (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
148 p_sys->b_packetizer = false;
149 p_sys->i_state = STATE_NOSYNC;
150 aout_DateSet( &p_sys->end_date, 0 );
151 p_sys->bytestream = block_BytestreamInit();
152 p_sys->b_discontinuity = false;
154 /* Set output properties */
155 p_dec->fmt_out.i_cat = AUDIO_ES;
156 p_dec->fmt_out.i_codec = VLC_FOURCC('m','p','g','a');
157 p_dec->fmt_out.audio.i_rate = 0; /* So end_date gets initialized */
160 p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
162 p_dec->pf_packetize = (block_t *(*)(decoder_t *, block_t **))
165 /* Start with the minimum size for a free bitrate frame */
166 p_sys->i_free_frame_size = MPGA_HEADER_SIZE;
171 static int OpenDecoder( vlc_object_t *p_this )
173 /* HACK: Don't use this codec if we don't have an mpga audio filter */
174 if( !module_exists( "mpgatofixed32" ) )
177 return Open( p_this );
180 static int OpenPacketizer( vlc_object_t *p_this )
182 decoder_t *p_dec = (decoder_t*)p_this;
184 int i_ret = Open( p_this );
186 if( i_ret == VLC_SUCCESS ) p_dec->p_sys->b_packetizer = true;
191 /****************************************************************************
192 * DecodeBlock: the whole thing
193 ****************************************************************************
194 * This function is called just after the thread is launched.
195 ****************************************************************************/
196 static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
198 decoder_sys_t *p_sys = p_dec->p_sys;
199 uint8_t p_header[MAD_BUFFER_GUARD];
204 if( !pp_block || !*pp_block ) return NULL;
206 if( (*pp_block)->i_flags&(BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
208 if( (*pp_block)->i_flags&BLOCK_FLAG_CORRUPTED )
210 p_sys->i_state = STATE_NOSYNC;
211 block_BytestreamEmpty( &p_sys->bytestream );
213 aout_DateSet( &p_sys->end_date, 0 );
214 block_Release( *pp_block );
215 p_sys->b_discontinuity = true;
219 if( !aout_DateGet( &p_sys->end_date ) && !(*pp_block)->i_pts )
221 /* We've just started the stream, wait for the first PTS. */
222 msg_Dbg( p_dec, "waiting for PTS" );
223 block_Release( *pp_block );
227 block_BytestreamPush( &p_sys->bytestream, *pp_block );
231 switch( p_sys->i_state )
235 while( block_PeekBytes( &p_sys->bytestream, p_header, 2 )
238 /* Look for sync word - should be 0xffe */
239 if( p_header[0] == 0xff && (p_header[1] & 0xe0) == 0xe0 )
241 p_sys->i_state = STATE_SYNC;
244 block_SkipByte( &p_sys->bytestream );
246 if( p_sys->i_state != STATE_SYNC )
248 block_BytestreamFlush( &p_sys->bytestream );
255 /* New frame, set the Presentation Time Stamp */
256 p_sys->i_pts = p_sys->bytestream.p_block->i_pts;
257 if( p_sys->i_pts != 0 &&
258 p_sys->i_pts != aout_DateGet( &p_sys->end_date ) )
260 aout_DateSet( &p_sys->end_date, p_sys->i_pts );
262 p_sys->i_state = STATE_HEADER;
265 /* Get MPGA frame header (MPGA_HEADER_SIZE bytes) */
266 if( block_PeekBytes( &p_sys->bytestream, p_header,
267 MPGA_HEADER_SIZE ) != VLC_SUCCESS )
273 /* Build frame header */
274 i_header = (p_header[0]<<24)|(p_header[1]<<16)|(p_header[2]<<8)
277 /* Check if frame is valid and get frame info */
278 p_sys->i_frame_size = SyncInfo( i_header,
280 &p_sys->i_channels_conf,
283 &p_sys->i_frame_length,
284 &p_sys->i_max_frame_size,
287 if( p_sys->i_frame_size == -1 )
289 msg_Dbg( p_dec, "emulated startcode" );
290 block_SkipByte( &p_sys->bytestream );
291 p_sys->i_state = STATE_NOSYNC;
292 p_sys->b_discontinuity = true;
296 if( p_sys->i_bit_rate == 0 )
298 /* Free bitrate, but 99% emulated startcode :( */
299 if( p_dec->p_sys->i_free_frame_size == MPGA_HEADER_SIZE )
301 msg_Dbg( p_dec, "free bitrate mode");
303 /* The -1 below is to account for the frame padding */
304 p_sys->i_frame_size = p_sys->i_free_frame_size - 1;
307 p_sys->i_state = STATE_NEXT_SYNC;
309 case STATE_NEXT_SYNC:
310 /* TODO: If p_block == NULL, flush the buffer without checking the
313 /* Check if next expected frame contains the sync word */
314 if( block_PeekOffsetBytes( &p_sys->bytestream,
315 p_sys->i_frame_size, p_header,
316 MAD_BUFFER_GUARD ) != VLC_SUCCESS )
322 if( p_header[0] == 0xff && (p_header[1] & 0xe0) == 0xe0 )
324 /* Startcode is fine, let's try the header as an extra check */
325 int i_next_frame_size;
326 unsigned int i_next_channels, i_next_channels_conf;
327 unsigned int i_next_rate, i_next_bit_rate;
328 unsigned int i_next_frame_length, i_next_max_frame_size;
329 unsigned int i_next_layer;
331 /* Build frame header */
332 i_header = (p_header[0]<<24)|(p_header[1]<<16)|(p_header[2]<<8)
335 i_next_frame_size = SyncInfo( i_header,
337 &i_next_channels_conf,
340 &i_next_frame_length,
341 &i_next_max_frame_size,
344 /* Free bitrate only */
345 if( p_sys->i_bit_rate == 0 && i_next_frame_size == -1 )
347 if( (unsigned int)p_sys->i_frame_size >
348 p_sys->i_max_frame_size )
350 msg_Dbg( p_dec, "frame too big %d > %d "
351 "(emulated startcode ?)", p_sys->i_frame_size,
352 p_sys->i_max_frame_size );
353 block_SkipByte( &p_sys->bytestream );
354 p_sys->i_state = STATE_NOSYNC;
355 p_sys->i_free_frame_size = MPGA_HEADER_SIZE;
359 p_sys->i_frame_size++;
363 if( i_next_frame_size == -1 )
365 msg_Dbg( p_dec, "emulated startcode on next frame" );
366 block_SkipByte( &p_sys->bytestream );
367 p_sys->i_state = STATE_NOSYNC;
368 p_sys->b_discontinuity = true;
372 /* Check info is in sync with previous one */
373 if( i_next_channels_conf != p_sys->i_channels_conf ||
374 i_next_rate != p_sys->i_rate ||
375 i_next_layer != p_sys->i_layer ||
376 i_next_frame_length != p_sys->i_frame_length )
378 /* Free bitrate only */
379 if( p_sys->i_bit_rate == 0 )
381 p_sys->i_frame_size++;
385 msg_Dbg( p_dec, "parameters changed unexpectedly "
386 "(emulated startcode ?)" );
387 block_SkipByte( &p_sys->bytestream );
388 p_sys->i_state = STATE_NOSYNC;
392 /* Free bitrate only */
393 if( p_sys->i_bit_rate == 0 )
395 if( i_next_bit_rate != 0 )
397 p_sys->i_frame_size++;
405 /* Free bitrate only */
406 if( p_sys->i_bit_rate == 0 )
408 if( (unsigned int)p_sys->i_frame_size >
409 p_sys->i_max_frame_size )
411 msg_Dbg( p_dec, "frame too big %d > %d "
412 "(emulated startcode ?)", p_sys->i_frame_size,
413 p_sys->i_max_frame_size );
414 block_SkipByte( &p_sys->bytestream );
415 p_sys->i_state = STATE_NOSYNC;
416 p_sys->i_free_frame_size = MPGA_HEADER_SIZE;
420 p_sys->i_frame_size++;
424 msg_Dbg( p_dec, "emulated startcode "
425 "(no startcode on following frame)" );
426 p_sys->i_state = STATE_NOSYNC;
427 block_SkipByte( &p_sys->bytestream );
431 p_sys->i_state = STATE_SEND_DATA;
435 /* Make sure we have enough data.
436 * (Not useful if we went through NEXT_SYNC) */
437 if( block_WaitBytes( &p_sys->bytestream,
438 p_sys->i_frame_size ) != VLC_SUCCESS )
443 p_sys->i_state = STATE_SEND_DATA;
445 case STATE_SEND_DATA:
446 if( !(p_buf = GetOutBuffer( p_dec, &p_out_buffer )) )
448 //p_dec->b_error = true;
452 /* Free bitrate only */
453 if( p_sys->i_bit_rate == 0 )
455 p_sys->i_free_frame_size = p_sys->i_frame_size;
458 /* Copy the whole frame into the buffer. When we reach this point
459 * we already know we have enough data available. */
460 block_GetBytes( &p_sys->bytestream, p_buf, p_sys->i_frame_size );
462 /* Get beginning of next frame for libmad */
463 if( !p_sys->b_packetizer )
465 memcpy( p_buf + p_sys->i_frame_size,
466 p_header, MAD_BUFFER_GUARD );
469 p_sys->i_state = STATE_NOSYNC;
471 /* Make sure we don't reuse the same pts twice */
472 if( p_sys->i_pts == p_sys->bytestream.p_block->i_pts )
473 p_sys->i_pts = p_sys->bytestream.p_block->i_pts = 0;
475 /* So p_block doesn't get re-added several times */
476 *pp_block = block_BytestreamPop( &p_sys->bytestream );
485 /*****************************************************************************
487 *****************************************************************************/
488 static uint8_t *GetOutBuffer( decoder_t *p_dec, void **pp_out_buffer )
490 decoder_sys_t *p_sys = p_dec->p_sys;
493 if( p_dec->fmt_out.audio.i_rate != p_sys->i_rate )
495 msg_Dbg( p_dec, "MPGA channels:%d samplerate:%d bitrate:%d",
496 p_sys->i_channels, p_sys->i_rate, p_sys->i_bit_rate );
498 aout_DateInit( &p_sys->end_date, p_sys->i_rate );
499 aout_DateSet( &p_sys->end_date, p_sys->i_pts );
502 p_dec->fmt_out.audio.i_rate = p_sys->i_rate;
503 p_dec->fmt_out.audio.i_channels = p_sys->i_channels;
504 p_dec->fmt_out.audio.i_frame_length = p_sys->i_frame_length;
505 p_dec->fmt_out.audio.i_bytes_per_frame =
506 p_sys->i_max_frame_size + MAD_BUFFER_GUARD;
508 p_dec->fmt_out.audio.i_original_channels = p_sys->i_channels_conf;
509 p_dec->fmt_out.audio.i_physical_channels =
510 p_sys->i_channels_conf & AOUT_CHAN_PHYSMASK;
512 p_dec->fmt_out.i_bitrate = p_sys->i_bit_rate * 1000;
514 if( p_sys->b_packetizer )
516 block_t *p_sout_buffer = GetSoutBuffer( p_dec );
517 p_buf = p_sout_buffer ? p_sout_buffer->p_buffer : NULL;
518 *pp_out_buffer = p_sout_buffer;
522 aout_buffer_t *p_aout_buffer = GetAoutBuffer( p_dec );
523 p_buf = p_aout_buffer ? p_aout_buffer->p_buffer : NULL;
524 *pp_out_buffer = p_aout_buffer;
530 /*****************************************************************************
532 *****************************************************************************/
533 static aout_buffer_t *GetAoutBuffer( decoder_t *p_dec )
535 decoder_sys_t *p_sys = p_dec->p_sys;
536 aout_buffer_t *p_buf;
538 p_buf = decoder_NewAudioBuffer( p_dec, p_sys->i_frame_length );
539 if( p_buf == NULL ) return NULL;
541 p_buf->start_date = aout_DateGet( &p_sys->end_date );
543 aout_DateIncrement( &p_sys->end_date, p_sys->i_frame_length );
544 p_buf->b_discontinuity = p_sys->b_discontinuity;
545 p_sys->b_discontinuity = false;
547 /* Hack for libmad filter */
548 p_buf->i_nb_bytes = p_sys->i_frame_size + MAD_BUFFER_GUARD;
553 /*****************************************************************************
555 *****************************************************************************/
556 static block_t *GetSoutBuffer( decoder_t *p_dec )
558 decoder_sys_t *p_sys = p_dec->p_sys;
561 p_block = block_New( p_dec, p_sys->i_frame_size );
562 if( p_block == NULL ) return NULL;
564 p_block->i_pts = p_block->i_dts = aout_DateGet( &p_sys->end_date );
567 aout_DateIncrement( &p_sys->end_date, p_sys->i_frame_length ) - p_block->i_pts;
572 /*****************************************************************************
573 * CloseDecoder: clean up the decoder
574 *****************************************************************************/
575 static void CloseDecoder( vlc_object_t *p_this )
577 decoder_t *p_dec = (decoder_t *)p_this;
578 decoder_sys_t *p_sys = p_dec->p_sys;
580 block_BytestreamRelease( &p_sys->bytestream );
585 /*****************************************************************************
586 * SyncInfo: parse MPEG audio sync info
587 *****************************************************************************/
588 static int SyncInfo( uint32_t i_header, unsigned int * pi_channels,
589 unsigned int * pi_channels_conf,
590 unsigned int * pi_sample_rate, unsigned int * pi_bit_rate,
591 unsigned int * pi_frame_length,
592 unsigned int * pi_max_frame_size, unsigned int * pi_layer)
594 static const int ppi_bitrate[2][3][16] =
598 { 0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384,
601 { 0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256,
604 { 0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224,
610 { 0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192,
613 { 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128,
616 { 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128,
621 static const int ppi_samplerate[2][4] = /* version 1 then 2 */
623 { 44100, 48000, 32000, 0 },
624 { 22050, 24000, 16000, 0 }
627 int i_version, i_mode, i_emphasis;
628 bool b_padding, b_mpeg_2_5, b_crc;
629 int i_frame_size = 0;
630 int i_bitrate_index, i_samplerate_index;
633 b_mpeg_2_5 = 1 - ((i_header & 0x100000) >> 20);
634 i_version = 1 - ((i_header & 0x80000) >> 19);
635 *pi_layer = 4 - ((i_header & 0x60000) >> 17);
636 b_crc = !((i_header >> 16) & 0x01);
637 i_bitrate_index = (i_header & 0xf000) >> 12;
638 i_samplerate_index = (i_header & 0xc00) >> 10;
639 b_padding = (i_header & 0x200) >> 9;
641 i_mode = (i_header & 0xc0) >> 6;
642 /* Modeext, copyright & original */
643 i_emphasis = i_header & 0x3;
645 if( *pi_layer != 4 &&
646 i_bitrate_index < 0x0f &&
647 i_samplerate_index != 0x03 &&
653 case 1: /* joint stereo */
655 *pi_channels_conf = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
657 case 2: /* dual-mono */
659 *pi_channels_conf = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
660 | AOUT_CHAN_DUALMONO;
664 *pi_channels_conf = AOUT_CHAN_CENTER;
667 *pi_bit_rate = ppi_bitrate[i_version][*pi_layer-1][i_bitrate_index];
668 i_max_bit_rate = ppi_bitrate[i_version][*pi_layer-1][14];
669 *pi_sample_rate = ppi_samplerate[i_version][i_samplerate_index];
673 *pi_sample_rate >>= 1;
679 i_frame_size = ( 12000 * *pi_bit_rate / *pi_sample_rate +
681 *pi_max_frame_size = ( 12000 * i_max_bit_rate /
682 *pi_sample_rate + 1 ) * 4;
683 *pi_frame_length = 384;
687 i_frame_size = 144000 * *pi_bit_rate / *pi_sample_rate + b_padding;
688 *pi_max_frame_size = 144000 * i_max_bit_rate / *pi_sample_rate + 1;
689 *pi_frame_length = 1152;
693 i_frame_size = ( i_version ? 72000 : 144000 ) *
694 *pi_bit_rate / *pi_sample_rate + b_padding;
695 *pi_max_frame_size = ( i_version ? 72000 : 144000 ) *
696 i_max_bit_rate / *pi_sample_rate + 1;
697 *pi_frame_length = i_version ? 576 : 1152;
704 /* Free bitrate mode can support higher bitrates */
705 if( !*pi_bit_rate ) *pi_max_frame_size *= 2;