]> git.sesse.net Git - vlc/blob - modules/codec/a52.c
* src/input/input_ext-dec.c, include/input_ext-dec.h, modules/codec/araw.c:
[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.15 2002/10/24 09:37:48 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     InitBitstream( &p_dec->bit_stream, p_dec->p_fifo,
134                    NULL, NULL );
135
136     /* decoder thread's main loop */
137     while ( !p_dec->p_fifo->b_die && !p_dec->p_fifo->b_error )
138     {
139         int i_frame_size, i_channels, i_rate, i_bit_rate;
140         mtime_t pts;
141         byte_t p_header[7];
142         aout_buffer_t * p_buffer;
143
144         /* Look for sync word - should be 0x0b77 */
145         RealignBits( &p_dec->bit_stream );
146         while ( (ShowBits( &p_dec->bit_stream, 16 ) ) != 0x0b77 && 
147                 (!p_dec->p_fifo->b_die) && (!p_dec->p_fifo->b_error))
148         {
149             RemoveBits( &p_dec->bit_stream, 8 );
150         }
151
152         /* Set the Presentation Time Stamp */
153         NextPTS( &p_dec->bit_stream, &pts, NULL );
154         if ( pts != 0 && pts != aout_DateGet( &end_date ) )
155         {
156             aout_DateSet( &end_date, pts );
157         }
158
159         /* Get A/52 frame header */
160         GetChunk( &p_dec->bit_stream, p_header, 7 );
161         if( p_dec->p_fifo->b_die ) break;
162
163         /* Check if frame is valid and get frame info */
164         i_frame_size = SyncInfo( p_header, &i_channels, &i_rate,
165                                  &i_bit_rate );
166
167         if( !i_frame_size )
168         {
169             msg_Warn( p_dec->p_fifo, "a52_syncinfo failed" );
170             continue;
171         }
172
173         if( (p_dec->p_aout_input != NULL) &&
174             ( (p_dec->output_format.i_rate != i_rate)
175                 || (p_dec->output_format.i_channels != i_channels)
176                 || (p_dec->output_format.i_bytes_per_frame != i_frame_size) ) )
177         {
178             /* Parameters changed - this should not happen. */
179             aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
180             p_dec->p_aout_input = NULL;
181         }
182
183         /* Creating the audio input if not created yet. */
184         if( p_dec->p_aout_input == NULL )
185         {
186             p_dec->output_format.i_rate = i_rate;
187             p_dec->output_format.i_channels = i_channels;
188             p_dec->output_format.i_bytes_per_frame = i_frame_size;
189             p_dec->output_format.i_frame_length = A52_FRAME_NB;
190             aout_DateInit( &end_date, i_rate );
191             p_dec->p_aout_input = aout_DecNew( p_dec->p_fifo,
192                                                &p_dec->p_aout,
193                                                &p_dec->output_format );
194
195             if ( p_dec->p_aout_input == NULL )
196             {
197                 p_dec->p_fifo->b_error = 1;
198                 break;
199             }
200         }
201
202         if ( !aout_DateGet( &end_date ) )
203         {
204             byte_t p_junk[3840];
205
206             /* We've just started the stream, wait for the first PTS. */
207             GetChunk( &p_dec->bit_stream, p_junk, i_frame_size - 7 );
208             continue;
209         }
210
211         p_buffer = aout_DecNewBuffer( p_dec->p_aout, p_dec->p_aout_input,
212                                       A52_FRAME_NB );
213         if ( p_buffer == NULL ) return -1;
214         p_buffer->start_date = aout_DateGet( &end_date );
215         p_buffer->end_date = aout_DateIncrement( &end_date,
216                                                  A52_FRAME_NB );
217
218         /* Get the whole frame. */
219         memcpy( p_buffer->p_buffer, p_header, 7 );
220         GetChunk( &p_dec->bit_stream, p_buffer->p_buffer + 7,
221                   i_frame_size - 7 );
222         if( p_dec->p_fifo->b_die )
223         {
224             aout_DecDeleteBuffer( p_dec->p_aout, p_dec->p_aout_input,
225                                   p_buffer );
226             break;
227         }
228
229         /* Send the buffer to the mixer. */
230         aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_buffer );
231     }
232
233     /* If b_error is set, the spdif thread enters the error loop */
234     if( p_dec->p_fifo->b_error )
235     {
236         DecoderError( p_dec->p_fifo );
237     }
238
239     /* End of the spdif decoder thread */
240     EndThread( p_dec );
241     
242     return 0;
243 }
244
245 /*****************************************************************************
246  * EndThread : spdif thread destruction
247  *****************************************************************************/
248 static void EndThread( dec_thread_t * p_dec )
249 {
250     if ( p_dec->p_aout_input != NULL )
251     {
252         aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
253     }
254
255     free( p_dec );
256 }
257
258 /****************************************************************************
259  * SyncInfo: parse A52 sync info
260  ****************************************************************************
261  * This code is borrowed from liba52 by Aaron Holtzman & Michel Lespinasse,
262  * since we don't want to oblige S/PDIF people to use liba52 just to get
263  * their SyncInfo...
264  ****************************************************************************/
265 int SyncInfo( const byte_t * p_buf, int * pi_channels, int * pi_sample_rate,
266               int * pi_bit_rate)
267 {
268     static const u8 halfrate[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3};
269     static const int rate[] = { 32,  40,  48,  56,  64,  80,  96, 112,
270                                 128, 160, 192, 224, 256, 320, 384, 448,
271                                 512, 576, 640};
272     static const u8 lfeon[8] = {0x10, 0x10, 0x04, 0x04, 0x04, 0x01, 0x04, 0x01};
273     int frmsizecod;
274     int bitrate;
275     int half;
276     int acmod;
277
278     if ((p_buf[0] != 0x0b) || (p_buf[1] != 0x77))        /* syncword */
279         return 0;
280
281     if (p_buf[5] >= 0x60)                /* bsid >= 12 */
282         return 0;
283     half = halfrate[p_buf[5] >> 3];
284
285     /* acmod, dsurmod and lfeon */
286     acmod = p_buf[6] >> 5;
287     if ( p_buf[6] & 0xf8 )
288     {
289         *pi_channels = AOUT_CHAN_DOLBY;
290     }
291     else switch ( acmod )
292     {
293     case 0x0: *pi_channels = AOUT_CHAN_CHANNEL; break;
294     case 0x1: *pi_channels = AOUT_CHAN_MONO; break;
295     case 0x2: *pi_channels = AOUT_CHAN_STEREO; break;
296     case 0x3: *pi_channels = AOUT_CHAN_3F; break;
297     case 0x4: *pi_channels = AOUT_CHAN_2F1R; break;
298     case 0x5: *pi_channels = AOUT_CHAN_3F1R; break;
299     case 0x6: *pi_channels = AOUT_CHAN_2F2R; break;
300     case 0x7: *pi_channels = AOUT_CHAN_3F2R; break;
301     case 0x8: *pi_channels = AOUT_CHAN_CHANNEL1; break;
302     case 0x9: *pi_channels = AOUT_CHAN_CHANNEL2; break;
303     }
304    
305     if ( p_buf[6] & lfeon[acmod] ) *pi_channels |= AOUT_CHAN_LFE;
306
307     frmsizecod = p_buf[4] & 63;
308     if (frmsizecod >= 38)
309         return 0;
310     bitrate = rate [frmsizecod >> 1];
311     *pi_bit_rate = (bitrate * 1000) >> half;
312
313     switch (p_buf[4] & 0xc0) {
314     case 0:
315         *pi_sample_rate = 48000 >> half;
316         return 4 * bitrate;
317     case 0x40:
318         *pi_sample_rate = 44100 >> half;
319         return 2 * (320 * bitrate / 147 + (frmsizecod & 1));
320     case 0x80:
321         *pi_sample_rate = 32000 >> half;
322         return 6 * bitrate;
323     default:
324         return 0;
325     }
326 }
327