]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/a52tofloat32.c
* Made audio_sample_format->i_format a FOURCC to allow the creation of
[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.3 2002/09/30 21:32:32 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_channels & AOUT_CHAN_MASK )
123     {
124     case AOUT_CHAN_CHANNEL: p_sys->i_flags = A52_CHANNEL; break;
125     case AOUT_CHAN_CHANNEL1: p_sys->i_flags = A52_CHANNEL1; break;
126     case AOUT_CHAN_CHANNEL2: p_sys->i_flags = A52_CHANNEL2; break;
127     case AOUT_CHAN_MONO: p_sys->i_flags = A52_MONO; break;
128     case AOUT_CHAN_STEREO: p_sys->i_flags = A52_STEREO; break;
129     case AOUT_CHAN_DOLBY: p_sys->i_flags = A52_DOLBY; break;
130     case AOUT_CHAN_3F: p_sys->i_flags = A52_3F; break;
131     case AOUT_CHAN_2F1R: p_sys->i_flags = A52_2F1R; break;
132     case AOUT_CHAN_3F1R: p_sys->i_flags = A52_3F1R; break;
133     case AOUT_CHAN_2F2R: p_sys->i_flags = A52_2F2R; break;
134     case AOUT_CHAN_3F2R: p_sys->i_flags = A52_3F2R; break;
135     default:
136         msg_Err( p_filter, "unknow sample format !" );
137         free( p_sys );
138         return -1;
139     }
140     if ( p_filter->output.i_channels & AOUT_CHAN_LFE )
141     {
142         p_sys->i_flags |= A52_LFE;
143     }
144     p_sys->i_flags |= A52_ADJUST_LEVEL;
145
146     /* Initialize liba52 */
147     p_sys->p_liba52 = a52_init( 0 );
148     if( p_sys->p_liba52 == NULL )
149     {
150         msg_Err( p_filter, "unable to initialize liba52" );
151         return -1;
152     }
153
154     p_filter->pf_do_work = DoWork;
155     p_filter->b_in_place = 0;
156
157     return 0;
158 }
159
160 /*****************************************************************************
161  * Interleave: helper function to interleave channels
162  *****************************************************************************/
163 static void Interleave( float * p_out, const float * p_in, int i_channels )
164 {
165     int i, j;
166
167     for ( j = 0; j < i_channels; j++ )
168     {
169         for ( i = 0; i < 256; i++ )
170         {
171             p_out[i * i_channels + j] = p_in[j * 256 + i];
172         }
173     }
174 }
175
176 /*****************************************************************************
177  * DoWork: decode an ATSC A/52 frame.
178  *****************************************************************************/
179 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
180                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
181 {
182     struct aout_filter_sys_t * p_sys = p_filter->p_sys;
183     sample_t        i_sample_level = 1;
184     int             i_flags = p_sys->i_flags;
185     int             i_bytes_per_block = 256 * p_sys->i_nb_channels
186                       * sizeof(float);
187     int             i;
188
189     /* Do the actual decoding now. */
190     a52_frame( p_sys->p_liba52, p_in_buf->p_buffer,
191                &i_flags, &i_sample_level, 0 );
192
193     if ( (i_flags & A52_CHANNEL_MASK) != (p_sys->i_flags & A52_CHANNEL_MASK) )
194     {
195         msg_Err( p_filter,
196                  "liba52 couldn't do the requested downmix 0x%x->0x%x",
197                  p_sys->i_flags, i_flags );
198         memset( p_out_buf->p_buffer, 0, i_bytes_per_block * 6 );
199         return;
200     }
201
202     if( !p_sys->b_dynrng )
203     {
204         a52_dynrng( p_filter->p_sys->p_liba52, NULL, NULL );
205     }
206
207     for ( i = 0; i < 6; i++ )
208     {
209         sample_t * p_samples;
210
211         if( a52_block( p_sys->p_liba52 ) )
212         {
213             msg_Warn( p_filter, "a52_block failed for block %d", i );
214         }
215
216         p_samples = a52_samples( p_sys->p_liba52 );
217
218         /* Interleave the *$£%ù samples. */
219         Interleave( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
220                     p_samples, p_sys->i_nb_channels );
221     }
222
223     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
224     p_out_buf->i_nb_bytes = i_bytes_per_block * 6;
225 }
226
227 /*****************************************************************************
228  * Destroy : deallocate data structures
229  *****************************************************************************/
230 static void Destroy( vlc_object_t * _p_filter )
231 {
232     aout_filter_t * p_filter = (aout_filter_t *)_p_filter;
233     struct aout_filter_sys_t * p_sys = p_filter->p_sys;
234
235     a52_free( p_sys->p_liba52 );
236     free( p_sys );
237 }
238