]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/a52tofloat32.c
Santa Claus brings to you :
[vlc] / modules / audio_filter / converter / a52tofloat32.c
1 /*****************************************************************************
2  * a52tofloat32.c: ATSC A/52 aka AC-3 decoder plugin for VLC.
3  *   This plugin makes use of liba52 to decode A/52 audio
4  *   (http://liba52.sf.net/).
5  *****************************************************************************
6  * Copyright (C) 2001, 2002 VideoLAN
7  * $Id: a52tofloat32.c,v 1.10 2002/12/25 02:23:36 massiot Exp $
8  *
9  * Authors: Gildas Bazin <gbazin@netcourrier.com>
10  *          Christophe Massiot <massiot@via.ecp.fr>
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 <vlc/vlc.h>
31
32 #include <stdlib.h>                                      /* malloc(), free() */
33 #include <string.h>                                              /* strdup() */
34 #ifdef HAVE_STDINT_H
35 #   include <stdint.h>                                         /* int16_t .. */
36 #elif HAVE_INTTYPES_H
37 #   include <inttypes.h>                                       /* int16_t .. */
38 #endif
39
40 #ifdef HAVE_UNISTD_H
41 #   include <unistd.h>
42 #endif
43
44 #ifdef USE_A52DEC_TREE                                 /* liba52 header file */
45 #   include "include/a52.h"
46 #else
47 #   include "a52dec/a52.h"
48 #endif
49
50 #include "audio_output.h"
51 #include "aout_internal.h"
52
53 /*****************************************************************************
54  * Local prototypes
55  *****************************************************************************/
56 static int  Create    ( vlc_object_t * );
57 static void Destroy   ( vlc_object_t * );
58 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,  
59                         aout_buffer_t * );
60
61 /*****************************************************************************
62  * Local structures
63  *****************************************************************************/
64 struct aout_filter_sys_t
65 {
66     a52_state_t * p_liba52; /* liba52 internal structure */
67     vlc_bool_t b_dynrng; /* see below */
68     int i_flags; /* liba52 flags, see a52dec/doc/liba52.txt */
69     int i_nb_channels; /* number of float32 per sample */
70 };
71
72 /*****************************************************************************
73  * Module descriptor
74  *****************************************************************************/
75 #define DYNRNG_TEXT N_("A/52 dynamic range compression")
76 #define DYNRNG_LONGTEXT N_( \
77     "Dynamic range compression makes the loud sounds softer, and the soft " \
78     "sounds louder, so you can more easily listen to the stream in a noisy " \
79     "environment without disturbing anyone. If you disable the dynamic range "\
80     "compression the playback will be more adapted to a movie theater or a " \
81     "listening room.")
82
83 vlc_module_begin();
84     add_category_hint( N_("Miscellaneous"), NULL );
85     add_bool( "a52-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT );
86     set_description( _("ATSC A/52 aka AC-3 audio decoder module") );
87     set_capability( "audio filter", 100 );
88     set_callbacks( Create, Destroy );
89 vlc_module_end();
90
91 /*****************************************************************************
92  * Create: 
93  *****************************************************************************/
94 static int Create( vlc_object_t * _p_filter )
95 {
96     aout_filter_t * p_filter = (aout_filter_t *)_p_filter;
97     struct aout_filter_sys_t * p_sys;
98
99     if ( p_filter->input.i_format != VLC_FOURCC('a','5','2',' ')
100           || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
101     {
102         return -1;
103     }
104
105     if ( p_filter->input.i_rate != p_filter->output.i_rate )
106     {
107         return -1;
108     }
109
110     /* Allocate the memory needed to store the module's structure */
111     p_sys = p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
112     if( p_sys == NULL )
113     {
114         msg_Err( p_filter, "out of memory" );
115         return -1;
116     }
117
118     p_sys->b_dynrng = config_GetInt( p_filter, "a52-dynrng" );
119
120     /* We'll do our own downmixing, thanks. */
121     p_sys->i_nb_channels = aout_FormatNbChannels( &p_filter->output );
122     switch ( (p_filter->output.i_physical_channels & AOUT_CHAN_PHYSMASK)
123               & ~AOUT_CHAN_LFE )
124     {
125     case AOUT_CHAN_CENTER:
126         if ( (p_filter->output.i_original_channels & AOUT_CHAN_CENTER)
127               || (p_filter->output.i_original_channels
128                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
129         {
130             p_sys->i_flags = A52_MONO;
131         }
132         else if ( p_filter->output.i_original_channels & AOUT_CHAN_LEFT )
133         {
134             p_sys->i_flags = A52_CHANNEL1;
135         }
136         else
137         {
138             p_sys->i_flags = A52_CHANNEL2;
139         }
140         break;
141
142     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
143         if ( p_filter->output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
144         {
145             p_sys->i_flags = A52_DOLBY;
146         }
147         else if ( p_filter->input.i_original_channels == AOUT_CHAN_CENTER )
148         {
149             p_sys->i_flags = A52_MONO;
150         }
151         else if ( p_filter->input.i_original_channels & AOUT_CHAN_DUALMONO )
152         {
153             p_sys->i_flags = A52_CHANNEL;
154         }
155         else if ( !(p_filter->output.i_original_channels & AOUT_CHAN_RIGHT) )
156         {
157             p_sys->i_flags = A52_CHANNEL1;
158         }
159         else if ( !(p_filter->output.i_original_channels & AOUT_CHAN_LEFT) )
160         {
161             p_sys->i_flags = A52_CHANNEL2;
162         }
163         else
164         {
165             p_sys->i_flags = A52_STEREO;
166         }
167         break;
168
169     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
170         p_sys->i_flags = A52_3F;
171         break;
172
173     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
174         p_sys->i_flags = A52_2F1R;
175         break;
176
177     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
178           | AOUT_CHAN_REARCENTER:
179         p_sys->i_flags = A52_3F1R;
180         break;
181
182     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
183           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
184         p_sys->i_flags = A52_2F2R;
185         break;
186
187     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
188           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
189         p_sys->i_flags = A52_3F2R;
190         break;
191
192     default:
193         msg_Err( p_filter, "unknow sample format !" );
194         free( p_sys );
195         return -1;
196     }
197     if ( p_filter->output.i_physical_channels & AOUT_CHAN_LFE )
198     {
199         p_sys->i_flags |= A52_LFE;
200     }
201     p_sys->i_flags |= A52_ADJUST_LEVEL;
202
203     /* Initialize liba52 */
204     p_sys->p_liba52 = a52_init( 0 );
205     if( p_sys->p_liba52 == NULL )
206     {
207         msg_Err( p_filter, "unable to initialize liba52" );
208         return -1;
209     }
210
211     p_filter->pf_do_work = DoWork;
212     p_filter->b_in_place = 0;
213
214     return 0;
215 }
216
217 /*****************************************************************************
218  * Interleave: helper function to interleave channels
219  *****************************************************************************/
220 static void Interleave( float * p_out, const float * p_in, int i_nb_channels )
221 {
222     /* We do not only have to interleave, but also reorder the channels
223      * Channel reordering according to number of output channels of libA52
224      * The reordering needs to be different for different channel configurations
225      * (3F2R, 1F2R etc), so this is only temporary.
226      * The WG-4 order is appropriate for stereo, quadrophonia, and 5.1 surround.
227      *
228      * 6 channel mode
229      * channel  liba52 order    WG-4 order
230      * 0        LFE             // L
231      * 1        L               // R
232      * 2        C               // LS
233      * 3        R               // RS
234      * 4        LS              // C
235      * 5        RS              // LFE
236      *
237      * The liba52 moves channels to the front if there are unused spaces, so
238      * there is no gap between channels. The translation table says which
239      * channel of the new stream is taken from which original channel [use
240      * the new channel as the array index, use the number you get from the
241      * array to address the original channel].
242      */
243
244     static const int translation[7][6] =
245     {{ 0, 0, 0, 0, 0, 0 },      /* 0 channels (rarely used) */
246     { 0, 0, 0, 0, 0, 0 },       /* 1 ch */
247     { 0, 1, 0, 0, 0, 0 },       /* 2 */
248     { 1, 2, 0, 0, 0, 0 },       /* 3 */
249     { 1, 3, 2, 0, 0, 0 },       /* 4 */
250     { 1, 3, 4, 2, 0, 0 },       /* 5 */
251     { 1, 3, 4, 5, 2, 0 }};      /* 6 */
252
253     int i, j;
254     for ( j = 0; j < i_nb_channels; j++ )
255     {
256         for ( i = 0; i < 256; i++ )
257         {
258             p_out[i * i_nb_channels + j] = p_in[translation[i_nb_channels][j]
259                                                  * 256 + i];
260         }
261     }
262 }
263
264 /*****************************************************************************
265  * Duplicate: helper function to duplicate a unique channel
266  *****************************************************************************/
267 static void Duplicate( float * p_out, const float * p_in )
268 {
269     int i;
270
271     for ( i = 256; i--; )
272     {
273         *p_out++ = *p_in;
274         *p_out++ = *p_in;
275         p_in++;
276     }
277 }
278
279 /*****************************************************************************
280  * DoWork: decode an ATSC A/52 frame.
281  *****************************************************************************/
282 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
283                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
284 {
285     struct aout_filter_sys_t * p_sys = p_filter->p_sys;
286     sample_t        i_sample_level = 1;
287     int             i_flags = p_sys->i_flags;
288     int             i_bytes_per_block = 256 * p_sys->i_nb_channels
289                       * sizeof(float);
290     int             i;
291
292     /* Do the actual decoding now. */
293     a52_frame( p_sys->p_liba52, p_in_buf->p_buffer,
294                &i_flags, &i_sample_level, 0 );
295
296     if ( (i_flags & A52_CHANNEL_MASK) != (p_sys->i_flags & A52_CHANNEL_MASK) )
297     {
298         msg_Err( p_filter,
299                  "liba52 couldn't do the requested downmix 0x%x->0x%x",
300                  p_sys->i_flags  & A52_CHANNEL_MASK,
301                  i_flags & A52_CHANNEL_MASK );
302
303         /* We do not know if the output has the same number of channels
304          * than the input, so die quietly... */
305         memset( p_out_buf->p_buffer, 0, i_bytes_per_block * 6 );
306         p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
307         p_out_buf->i_nb_bytes = i_bytes_per_block * 6;
308         return;
309     }
310
311     if( !p_sys->b_dynrng )
312     {
313         a52_dynrng( p_filter->p_sys->p_liba52, NULL, NULL );
314     }
315
316     for ( i = 0; i < 6; i++ )
317     {
318         sample_t * p_samples;
319
320         if( a52_block( p_sys->p_liba52 ) )
321         {
322             msg_Warn( p_filter, "a52_block failed for block %d", i );
323         }
324
325         p_samples = a52_samples( p_sys->p_liba52 );
326
327         if ( ((p_sys->i_flags & A52_CHANNEL_MASK) == A52_CHANNEL1
328                || (p_sys->i_flags & A52_CHANNEL_MASK) == A52_CHANNEL2
329                || (p_sys->i_flags & A52_CHANNEL_MASK) == A52_MONO)
330               && (p_filter->output.i_physical_channels 
331                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
332         {
333             Duplicate( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
334                        p_samples );
335         }
336         else
337         {
338             /* Interleave the *$£%ù samples. */
339             Interleave( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
340                         p_samples, p_sys->i_nb_channels );
341         }
342     }
343
344     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
345     p_out_buf->i_nb_bytes = i_bytes_per_block * 6;
346 }
347
348 /*****************************************************************************
349  * Destroy : deallocate data structures
350  *****************************************************************************/
351 static void Destroy( vlc_object_t * _p_filter )
352 {
353     aout_filter_t * p_filter = (aout_filter_t *)_p_filter;
354     struct aout_filter_sys_t * p_sys = p_filter->p_sys;
355
356     a52_free( p_sys->p_liba52 );
357     free( p_sys );
358 }
359