]> git.sesse.net Git - vlc/blob - modules/codec/a52.c
* ALL: removed GetPES and NextPES, we now use input_ExtractPES everywhere instead
[vlc] / modules / codec / a52.c
1 /*****************************************************************************
2  * a52.c: A/52 basic parser
3  *****************************************************************************
4  * Copyright (C) 2001-2002 VideoLAN
5  * $Id: a52.c,v 1.16 2002/10/27 16:58:14 gbazin Exp $
6  *
7  * Authors: Stéphane Borel <stef@via.ecp.fr>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Michel Lespinasse <walken@zoy.org>
10  *          Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
11  *
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.
16  * 
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.
21  *
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>                                              /* memcpy() */
33 #include <fcntl.h>
34
35 #include <vlc/vlc.h>
36 #include <vlc/decoder.h>
37 #include <vlc/aout.h>
38
39 #ifdef HAVE_UNISTD_H
40 #   include <unistd.h>
41 #endif
42
43 #define A52_FRAME_NB 1536 
44
45 /*****************************************************************************
46  * dec_thread_t : A52 pass-through thread descriptor
47  *****************************************************************************/
48 typedef struct dec_thread_t
49 {
50     /*
51      * Thread properties
52      */
53     vlc_thread_t        thread_id;                /* id for thread functions */
54
55     /*
56      * Input properties
57      */
58     decoder_fifo_t *    p_fifo;                /* stores the PES stream data */
59     bit_stream_t        bit_stream;
60
61     /*
62      * Output properties
63      */
64     aout_instance_t *   p_aout; /* opaque */
65     aout_input_t *      p_aout_input; /* opaque */
66     audio_sample_format_t output_format;
67 } dec_thread_t;
68
69 /****************************************************************************
70  * Local prototypes
71  ****************************************************************************/
72 static int  OpenDecoder    ( vlc_object_t * );
73 static int  RunDecoder     ( decoder_fifo_t * );
74
75 static void EndThread      ( dec_thread_t * );
76
77 static int  SyncInfo       ( const byte_t *, int *, int *, int * );
78
79 /*****************************************************************************
80  * Module descriptor
81  *****************************************************************************/
82 vlc_module_begin();
83     set_description( _("A/52 parser") );
84     set_capability( "decoder", 100 );
85     set_callbacks( OpenDecoder, NULL );
86 vlc_module_end();
87
88 /*****************************************************************************
89  * OpenDecoder: probe the decoder and return score
90  *****************************************************************************/
91 static int OpenDecoder( vlc_object_t *p_this ) 
92 {   
93     decoder_fifo_t *p_fifo = (decoder_fifo_t*) p_this;
94
95     if( p_fifo->i_fourcc != VLC_FOURCC('a','5','2',' ')
96          && p_fifo->i_fourcc != VLC_FOURCC('a','5','2','b') )
97     {   
98         return VLC_EGENERIC; 
99     }
100
101     p_fifo->pf_run = RunDecoder;
102     return VLC_SUCCESS;
103 }
104
105 /****************************************************************************
106  * RunDecoder: the whole thing
107  ****************************************************************************
108  * This function is called just after the thread is launched.
109  ****************************************************************************/
110 static int RunDecoder( decoder_fifo_t *p_fifo )
111 {
112     dec_thread_t * p_dec;
113     audio_date_t end_date;
114     
115     /* Allocate the memory needed to store the thread's structure */
116     p_dec = malloc( sizeof(dec_thread_t) );
117     if( p_dec == NULL )
118     {
119         msg_Err( p_fifo, "out of memory" );
120         DecoderError( p_fifo );
121         return -1;
122     }
123
124     /* Initialize the thread properties */
125     p_dec->p_aout = NULL;
126     p_dec->p_aout_input = NULL;
127     p_dec->p_fifo = p_fifo;
128     p_dec->output_format.i_format = VLC_FOURCC('a','5','2',' ');
129
130     aout_DateSet( &end_date, 0 );
131
132     /* Init the bitstream */
133     if( InitBitstream( &p_dec->bit_stream, p_dec->p_fifo,
134                        NULL, NULL ) != VLC_SUCCESS )
135     {
136         msg_Err( p_fifo, "cannot initialize bitstream" );
137         DecoderError( p_fifo );
138         free( p_dec );
139         return -1;
140     }
141
142     /* decoder thread's main loop */
143     while ( !p_dec->p_fifo->b_die && !p_dec->p_fifo->b_error )
144     {
145         int i_frame_size, i_channels, i_rate, i_bit_rate;
146         mtime_t pts;
147         byte_t p_header[7];
148         aout_buffer_t * p_buffer;
149
150         /* Look for sync word - should be 0x0b77 */
151         RealignBits( &p_dec->bit_stream );
152         while ( (ShowBits( &p_dec->bit_stream, 16 ) ) != 0x0b77 && 
153                 (!p_dec->p_fifo->b_die) && (!p_dec->p_fifo->b_error))
154         {
155             RemoveBits( &p_dec->bit_stream, 8 );
156         }
157
158         /* Set the Presentation Time Stamp */
159         NextPTS( &p_dec->bit_stream, &pts, NULL );
160         if ( pts != 0 && pts != aout_DateGet( &end_date ) )
161         {
162             aout_DateSet( &end_date, pts );
163         }
164
165         /* Get A/52 frame header */
166         GetChunk( &p_dec->bit_stream, p_header, 7 );
167         if( p_dec->p_fifo->b_die ) break;
168
169         /* Check if frame is valid and get frame info */
170         i_frame_size = SyncInfo( p_header, &i_channels, &i_rate,
171                                  &i_bit_rate );
172
173         if( !i_frame_size )
174         {
175             msg_Warn( p_dec->p_fifo, "a52_syncinfo failed" );
176             continue;
177         }
178
179         if( (p_dec->p_aout_input != NULL) &&
180             ( (p_dec->output_format.i_rate != i_rate)
181                 || (p_dec->output_format.i_channels != i_channels)
182                 || (p_dec->output_format.i_bytes_per_frame != i_frame_size) ) )
183         {
184             /* Parameters changed - this should not happen. */
185             aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
186             p_dec->p_aout_input = NULL;
187         }
188
189         /* Creating the audio input if not created yet. */
190         if( p_dec->p_aout_input == NULL )
191         {
192             p_dec->output_format.i_rate = i_rate;
193             p_dec->output_format.i_channels = i_channels;
194             p_dec->output_format.i_bytes_per_frame = i_frame_size;
195             p_dec->output_format.i_frame_length = A52_FRAME_NB;
196             aout_DateInit( &end_date, i_rate );
197             p_dec->p_aout_input = aout_DecNew( p_dec->p_fifo,
198                                                &p_dec->p_aout,
199                                                &p_dec->output_format );
200
201             if ( p_dec->p_aout_input == NULL )
202             {
203                 p_dec->p_fifo->b_error = 1;
204                 break;
205             }
206         }
207
208         if ( !aout_DateGet( &end_date ) )
209         {
210             byte_t p_junk[3840];
211
212             /* We've just started the stream, wait for the first PTS. */
213             GetChunk( &p_dec->bit_stream, p_junk, i_frame_size - 7 );
214             continue;
215         }
216
217         p_buffer = aout_DecNewBuffer( p_dec->p_aout, p_dec->p_aout_input,
218                                       A52_FRAME_NB );
219         if ( p_buffer == NULL ) return -1;
220         p_buffer->start_date = aout_DateGet( &end_date );
221         p_buffer->end_date = aout_DateIncrement( &end_date,
222                                                  A52_FRAME_NB );
223
224         /* Get the whole frame. */
225         memcpy( p_buffer->p_buffer, p_header, 7 );
226         GetChunk( &p_dec->bit_stream, p_buffer->p_buffer + 7,
227                   i_frame_size - 7 );
228         if( p_dec->p_fifo->b_die )
229         {
230             aout_DecDeleteBuffer( p_dec->p_aout, p_dec->p_aout_input,
231                                   p_buffer );
232             break;
233         }
234
235         /* Send the buffer to the mixer. */
236         aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_buffer );
237     }
238
239     /* If b_error is set, the spdif thread enters the error loop */
240     if( p_dec->p_fifo->b_error )
241     {
242         DecoderError( p_dec->p_fifo );
243     }
244
245     /* End of the spdif decoder thread */
246     EndThread( p_dec );
247     
248     return 0;
249 }
250
251 /*****************************************************************************
252  * EndThread : spdif thread destruction
253  *****************************************************************************/
254 static void EndThread( dec_thread_t * p_dec )
255 {
256     if ( p_dec->p_aout_input != NULL )
257     {
258         aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
259     }
260
261     CloseBitstream( &p_dec->bit_stream );
262     free( p_dec );
263 }
264
265 /****************************************************************************
266  * SyncInfo: parse A52 sync info
267  ****************************************************************************
268  * This code is borrowed from liba52 by Aaron Holtzman & Michel Lespinasse,
269  * since we don't want to oblige S/PDIF people to use liba52 just to get
270  * their SyncInfo...
271  ****************************************************************************/
272 int SyncInfo( const byte_t * p_buf, int * pi_channels, int * pi_sample_rate,
273               int * pi_bit_rate)
274 {
275     static const u8 halfrate[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3};
276     static const int rate[] = { 32,  40,  48,  56,  64,  80,  96, 112,
277                                 128, 160, 192, 224, 256, 320, 384, 448,
278                                 512, 576, 640};
279     static const u8 lfeon[8] = {0x10, 0x10, 0x04, 0x04, 0x04, 0x01, 0x04, 0x01};
280     int frmsizecod;
281     int bitrate;
282     int half;
283     int acmod;
284
285     if ((p_buf[0] != 0x0b) || (p_buf[1] != 0x77))        /* syncword */
286         return 0;
287
288     if (p_buf[5] >= 0x60)                /* bsid >= 12 */
289         return 0;
290     half = halfrate[p_buf[5] >> 3];
291
292     /* acmod, dsurmod and lfeon */
293     acmod = p_buf[6] >> 5;
294     if ( p_buf[6] & 0xf8 )
295     {
296         *pi_channels = AOUT_CHAN_DOLBY;
297     }
298     else switch ( acmod )
299     {
300     case 0x0: *pi_channels = AOUT_CHAN_CHANNEL; break;
301     case 0x1: *pi_channels = AOUT_CHAN_MONO; break;
302     case 0x2: *pi_channels = AOUT_CHAN_STEREO; break;
303     case 0x3: *pi_channels = AOUT_CHAN_3F; break;
304     case 0x4: *pi_channels = AOUT_CHAN_2F1R; break;
305     case 0x5: *pi_channels = AOUT_CHAN_3F1R; break;
306     case 0x6: *pi_channels = AOUT_CHAN_2F2R; break;
307     case 0x7: *pi_channels = AOUT_CHAN_3F2R; break;
308     case 0x8: *pi_channels = AOUT_CHAN_CHANNEL1; break;
309     case 0x9: *pi_channels = AOUT_CHAN_CHANNEL2; break;
310     }
311    
312     if ( p_buf[6] & lfeon[acmod] ) *pi_channels |= AOUT_CHAN_LFE;
313
314     frmsizecod = p_buf[4] & 63;
315     if (frmsizecod >= 38)
316         return 0;
317     bitrate = rate [frmsizecod >> 1];
318     *pi_bit_rate = (bitrate * 1000) >> half;
319
320     switch (p_buf[4] & 0xc0) {
321     case 0:
322         *pi_sample_rate = 48000 >> half;
323         return 4 * bitrate;
324     case 0x40:
325         *pi_sample_rate = 44100 >> half;
326         return 2 * (320 * bitrate / 147 + (frmsizecod & 1));
327     case 0x80:
328         *pi_sample_rate = 32000 >> half;
329         return 6 * bitrate;
330     default:
331         return 0;
332     }
333 }
334