]> git.sesse.net Git - vlc/blob - modules/audio_filter/channel_mixer/dolby.c
audio_filter/: fix warnings
[vlc] / modules / audio_filter / channel_mixer / dolby.c
1 /*****************************************************************************
2  * dolby.c : simple decoder for dolby surround encoded streams
3  *****************************************************************************
4  * Copyright (C) 2005, 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Boris Dorès <babal@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <vlc_aout.h>
34
35 /*****************************************************************************
36  * Local prototypes
37  *****************************************************************************/
38 static int  Create    ( vlc_object_t * );
39 static void Destroy   ( vlc_object_t * );
40
41 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
42                         aout_buffer_t * );
43
44 /*****************************************************************************
45  * Module descriptor
46  *****************************************************************************/
47 vlc_module_begin();
48     set_description( _("Simple decoder for Dolby Surround encoded streams") );
49     set_shortname( _("Dolby Surround decoder") );
50     set_category( CAT_INPUT );
51     set_subcategory( SUBCAT_INPUT_ACODEC );
52     set_capability( "audio filter", 5 );
53     set_callbacks( Create, Destroy );
54 vlc_module_end();
55
56 /*****************************************************************************
57  * Internal data structures
58  *****************************************************************************/
59 struct aout_filter_sys_t
60 {
61     int i_left;
62     int i_center;
63     int i_right;
64     int i_rear_left;
65     int i_rear_center;
66     int i_rear_right;
67 };
68
69 /* our internal channel order (WG-4 order) */
70 static const uint32_t pi_channels[] =
71 { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT, AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
72   AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_REARCENTER,
73   AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };
74
75 /*****************************************************************************
76  * Create: allocate headphone downmixer
77  *****************************************************************************/
78 static int Create( vlc_object_t *p_this )
79 {
80     int i = 0;
81     int i_offset = 0;
82     aout_filter_t * p_filter = (aout_filter_t *)p_this;
83
84     /* Validate audio filter format */
85     if ( p_filter->input.i_physical_channels != (AOUT_CHAN_LEFT|AOUT_CHAN_RIGHT)
86        || ! ( p_filter->input.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
87        || aout_FormatNbChannels( &p_filter->output ) <= 2
88        || ( p_filter->input.i_original_channels & ~AOUT_CHAN_DOLBYSTEREO )
89           != ( p_filter->output.i_original_channels & ~AOUT_CHAN_DOLBYSTEREO ) )
90     {
91         return VLC_EGENERIC;
92     }
93
94     if ( p_filter->input.i_rate != p_filter->output.i_rate )
95     {
96         return VLC_EGENERIC;
97     }
98
99     if ( p_filter->input.i_format != VLC_FOURCC('f','l','3','2')
100           || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
101     {
102         return VLC_EGENERIC;
103     }
104
105     /* Allocate the memory needed to store the module's structure */
106     p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
107     if ( p_filter->p_sys == NULL )
108     {
109         msg_Err( p_filter, "out of memory" );
110         return VLC_EGENERIC;
111     }
112     p_filter->p_sys->i_left = -1;
113     p_filter->p_sys->i_center = -1;
114     p_filter->p_sys->i_right = -1;
115     p_filter->p_sys->i_rear_left = -1;
116     p_filter->p_sys->i_rear_center = -1;
117     p_filter->p_sys->i_rear_right = -1;
118
119     while ( pi_channels[i] )
120     {
121         if ( p_filter->output.i_physical_channels & pi_channels[i] )
122         {
123             switch ( pi_channels[i] )
124             {
125                 case AOUT_CHAN_LEFT:
126                     p_filter->p_sys->i_left = i_offset;
127                     break;
128                 case AOUT_CHAN_CENTER:
129                     p_filter->p_sys->i_center = i_offset;
130                     break;
131                 case AOUT_CHAN_RIGHT:
132                     p_filter->p_sys->i_right = i_offset;
133                     break;
134                 case AOUT_CHAN_REARLEFT:
135                     p_filter->p_sys->i_rear_left = i_offset;
136                     break;
137                 case AOUT_CHAN_REARCENTER:
138                     p_filter->p_sys->i_rear_center = i_offset;
139                     break;
140                 case AOUT_CHAN_REARRIGHT:
141                     p_filter->p_sys->i_rear_right = i_offset;
142                     break;
143             }
144             ++i_offset;
145         }
146         ++i;
147     }
148
149     p_filter->pf_do_work = DoWork;
150     p_filter->b_in_place = 0;
151
152     return VLC_SUCCESS;
153 }
154
155 /*****************************************************************************
156  * Destroy: deallocate resources associated with headphone downmixer
157  *****************************************************************************/
158 static void Destroy( vlc_object_t *p_this )
159 {
160     aout_filter_t * p_filter = (aout_filter_t *)p_this;
161
162     if ( p_filter->p_sys != NULL )
163     {
164         free ( p_filter->p_sys );
165         p_filter->p_sys = NULL;
166     }
167 }
168
169 /*****************************************************************************
170  * DoWork: convert a buffer
171  *****************************************************************************/
172 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
173                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
174 {
175     VLC_UNUSED(p_aout);
176     float * p_in = (float*) p_in_buf->p_buffer;
177     float * p_out = (float*) p_out_buf->p_buffer;
178     size_t i_nb_samples = p_in_buf->i_nb_samples;
179     size_t i_nb_channels = aout_FormatNbChannels( &p_filter->output );
180
181     p_out_buf->i_nb_samples = i_nb_samples;
182     p_out_buf->i_nb_bytes = sizeof(float) * i_nb_samples
183                             * aout_FormatNbChannels( &p_filter->output );
184     memset ( p_out , 0 , p_out_buf->i_nb_bytes );
185
186     if ( p_filter->p_sys != NULL )
187     {
188         struct aout_filter_sys_t * p_sys = p_filter->p_sys;
189         size_t i_nb_rear = 0;
190         size_t i;
191
192         if ( p_sys->i_rear_left >= 0 )
193         {
194             ++i_nb_rear;
195         }
196         if ( p_sys->i_rear_center >= 0 )
197         {
198             ++i_nb_rear;
199         }
200         if ( p_sys->i_rear_right >= 0 )
201         {
202             ++i_nb_rear;
203         }
204
205         for ( i = 0; i < i_nb_samples; ++i )
206         {
207             float f_left = p_in[ i * 2 ];
208             float f_right = p_in[ i * 2 + 1 ];
209             float f_rear = ( f_left - f_right ) / i_nb_rear;
210
211             if ( p_sys->i_center >= 0 )
212             {
213                 float f_center = f_left + f_right;
214                 f_left -= f_center / 2;
215                 f_right -= f_center / 2;
216
217                 p_out[ i * i_nb_channels + p_sys->i_center ] = f_center;
218             }
219
220             if ( p_sys->i_left >= 0 )
221             {
222                 p_out[ i * i_nb_channels + p_sys->i_left ] = f_left;
223             }
224             if ( p_sys->i_right >= 0 )
225             {
226                 p_out[ i * i_nb_channels + p_sys->i_right ] = f_right;
227             }
228             if ( p_sys->i_rear_left >= 0 )
229             {
230                 p_out[ i * i_nb_channels + p_sys->i_rear_left ] = f_rear;
231             }
232             if ( p_sys->i_rear_center >= 0 )
233             {
234                 p_out[ i * i_nb_channels + p_sys->i_rear_center ] = f_rear;
235             }
236             if ( p_sys->i_rear_right >= 0 )
237             {
238                 p_out[ i * i_nb_channels + p_sys->i_rear_right ] = f_rear;
239             }
240         }
241     }
242 }