]> git.sesse.net Git - vlc/blob - src/audio_output/common.c
* Major API change of the audio output. New aout_Dec* functions.
[vlc] / src / audio_output / common.c
1 /*****************************************************************************
2  * common.c : audio output management of common data structures
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: common.c,v 1.1 2002/09/26 22:40:25 massiot Exp $
6  *
7  * Authors: Christophe Massiot <massiot@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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                            /* calloc(), malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31
32 #include "audio_output.h"
33 #include "aout_internal.h"
34
35
36 /*
37  * Instances management (internal and external)
38  */
39
40 /*****************************************************************************
41  * aout_New: initialize aout structure
42  *****************************************************************************/
43 aout_instance_t * __aout_New( vlc_object_t * p_parent )
44 {
45     aout_instance_t * p_aout;
46
47     /* Allocate descriptor. */
48     p_aout = vlc_object_create( p_parent, VLC_OBJECT_AOUT );
49     if( p_aout == NULL )
50     {
51         return NULL;
52     }
53
54     /* Initialize members. */
55     vlc_mutex_init( p_parent, &p_aout->input_fifos_lock );
56     vlc_mutex_init( p_parent, &p_aout->mixer_lock );
57     vlc_mutex_init( p_parent, &p_aout->output_fifo_lock );
58     p_aout->i_nb_inputs = 0;
59     p_aout->mixer.f_multiplier = 1.0;
60     p_aout->mixer.b_error = 1;
61
62     vlc_object_attach( p_aout, p_parent->p_vlc );
63
64     return p_aout;
65 }
66
67 /*****************************************************************************
68  * aout_Delete: destroy aout structure
69  *****************************************************************************/
70 void aout_Delete( aout_instance_t * p_aout )
71 {
72     vlc_mutex_destroy( &p_aout->input_fifos_lock );
73     vlc_mutex_destroy( &p_aout->mixer_lock );
74     vlc_mutex_destroy( &p_aout->output_fifo_lock );
75
76     /* Free structure. */
77     vlc_object_destroy( p_aout );
78 }
79
80
81 /*
82  * Formats management (internal and external)
83  */
84
85 /*****************************************************************************
86  * aout_FormatNbChannels : return the number of channels
87  *****************************************************************************/
88 int aout_FormatNbChannels( audio_sample_format_t * p_format )
89 {
90     int i_nb;
91
92     switch ( p_format->i_channels & AOUT_CHAN_MASK )
93     {
94     case AOUT_CHAN_CHANNEL1:
95     case AOUT_CHAN_CHANNEL2:
96     case AOUT_CHAN_MONO:
97         i_nb = 1;
98         break;
99
100     case AOUT_CHAN_CHANNEL:
101     case AOUT_CHAN_STEREO:
102     case AOUT_CHAN_DOLBY:
103         i_nb = 2;
104         break;
105
106     case AOUT_CHAN_3F:
107     case AOUT_CHAN_2F1R:
108         i_nb = 3;
109         break;
110
111     case AOUT_CHAN_3F1R:
112     case AOUT_CHAN_2F2R:
113         i_nb = 4;
114         break;
115
116     case AOUT_CHAN_3F2R:
117         i_nb = 5;
118         break;
119
120     default:
121         i_nb = 0;
122     }
123
124     if ( p_format->i_channels & AOUT_CHAN_LFE )
125         return i_nb + 1;
126     else
127         return i_nb;
128 }
129
130 /*****************************************************************************
131  * aout_FormatPrepare : compute the number of bytes per frame & frame length
132  *****************************************************************************/
133 void aout_FormatPrepare( audio_sample_format_t * p_format )
134 {
135     int i_result;
136
137     switch ( p_format->i_format )
138     {
139     case AOUT_FMT_U8:
140     case AOUT_FMT_S8:
141         i_result = 1;
142         break;
143
144     case AOUT_FMT_U16_LE:
145     case AOUT_FMT_U16_BE:
146     case AOUT_FMT_S16_LE:
147     case AOUT_FMT_S16_BE:
148         i_result = 2;
149         break;
150
151     case AOUT_FMT_FLOAT32:
152     case AOUT_FMT_FIXED32:
153         i_result = 4;
154         break;
155
156     case AOUT_FMT_SPDIF:
157     case AOUT_FMT_A52:
158     case AOUT_FMT_DTS:
159         /* For these formats the caller has to indicate the parameters
160          * by hand. */
161         return;
162
163     default:
164         i_result = 0; /* will segfault much sooner... */
165     }
166
167     p_format->i_bytes_per_frame = i_result * aout_FormatNbChannels( p_format );
168     p_format->i_frame_length = 1;
169 }
170
171
172 /*
173  * FIFO management (internal) - please understand that solving race conditions
174  * is _your_ job, ie. in the audio output you should own the mixer lock
175  * before calling any of these functions.
176  */
177
178 /*****************************************************************************
179  * aout_FifoInit : initialize the members of a FIFO
180  *****************************************************************************/
181 void aout_FifoInit( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
182                     u32 i_rate )
183 {
184     p_fifo->p_first = NULL;
185     p_fifo->pp_last = &p_fifo->p_first;
186     aout_DateInit( &p_fifo->end_date, i_rate );
187 }
188
189 /*****************************************************************************
190  * aout_FifoPush : push a packet into the FIFO
191  *****************************************************************************/
192 void aout_FifoPush( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
193                     aout_buffer_t * p_buffer )
194 {
195     *p_fifo->pp_last = p_buffer;
196     p_fifo->pp_last = &p_buffer->p_next;
197     *p_fifo->pp_last = NULL;
198     /* Enforce the continuity of the stream. */
199     if ( aout_DateGet( &p_fifo->end_date ) )
200     {
201         p_buffer->start_date = aout_DateGet( &p_fifo->end_date );
202         p_buffer->end_date = aout_DateIncrement( &p_fifo->end_date,
203                                                  p_buffer->i_nb_samples ); 
204     }
205     else
206     {
207         aout_DateSet( &p_fifo->end_date, p_buffer->end_date );
208     }
209 }
210
211 /*****************************************************************************
212  * aout_FifoSet : set end_date and trash all buffers (because they aren't
213  * properly dated)
214  *****************************************************************************/
215 void aout_FifoSet( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
216                    mtime_t date )
217 {
218     aout_buffer_t * p_buffer;
219
220     aout_DateSet( &p_fifo->end_date, date );
221     p_buffer = p_fifo->p_first;
222     while ( p_buffer != NULL )
223     {
224         aout_buffer_t * p_next = p_buffer->p_next;
225         aout_BufferFree( p_buffer );
226         p_buffer = p_next;
227     }
228     p_fifo->p_first = NULL;
229     p_fifo->pp_last = &p_fifo->p_first;
230 }
231
232 /*****************************************************************************
233  * aout_FifoMoveDates : Move forwards or backwards all dates in the FIFO
234  *****************************************************************************/
235 void aout_FifoMoveDates( aout_instance_t * p_aout, aout_fifo_t * p_fifo,
236                          mtime_t difference )
237 {
238     aout_buffer_t * p_buffer;
239
240     aout_DateMove( &p_fifo->end_date, difference );
241     p_buffer = p_fifo->p_first;
242     while ( p_buffer != NULL )
243     {
244         p_buffer->start_date += difference;
245         p_buffer->end_date += difference;
246         p_buffer = p_buffer->p_next;
247     }
248 }
249
250 /*****************************************************************************
251  * aout_FifoNextStart : return the current end_date
252  *****************************************************************************/
253 mtime_t aout_FifoNextStart( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
254 {
255     return aout_DateGet( &p_fifo->end_date );
256 }
257
258 /*****************************************************************************
259  * aout_FifoPop : get the next buffer out of the FIFO
260  *****************************************************************************/
261 aout_buffer_t * aout_FifoPop( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
262 {
263     aout_buffer_t * p_buffer;
264     p_buffer = p_fifo->p_first;
265     if ( p_buffer == NULL ) return NULL;
266     p_fifo->p_first = p_buffer->p_next;
267     if ( p_fifo->p_first == NULL )
268     {
269         p_fifo->pp_last = &p_fifo->p_first;
270     }
271
272     return p_buffer;
273 }
274
275 /*****************************************************************************
276  * aout_FifoDestroy : destroy a FIFO and its buffers
277  *****************************************************************************/
278 void aout_FifoDestroy( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
279 {
280     aout_buffer_t * p_buffer;
281
282     p_buffer = p_fifo->p_first;
283     while ( p_buffer != NULL )
284     {
285         aout_buffer_t * p_next = p_buffer->p_next;
286         aout_BufferFree( p_buffer );
287         p_buffer = p_next;
288     }
289 }
290
291
292 /*
293  * Date management (internal and external)
294  */
295
296 /*****************************************************************************
297  * aout_DateInit : set the divider of an audio_date_t
298  *****************************************************************************/
299 void aout_DateInit( audio_date_t * p_date, u32 i_divider )
300 {
301     p_date->date = 0;
302     p_date->i_divider = i_divider;
303     p_date->i_remainder = 0;
304 }
305
306 /*****************************************************************************
307  * aout_DateSet : set the date of an audio_date_t
308  *****************************************************************************/
309 void aout_DateSet( audio_date_t * p_date, mtime_t new_date )
310 {
311     p_date->date = new_date;
312     p_date->i_remainder = 0;
313 }
314
315 /*****************************************************************************
316  * aout_DateMove : move forwards or backwards the date of an audio_date_t
317  *****************************************************************************/
318 void aout_DateMove( audio_date_t * p_date, mtime_t difference )
319 {
320     p_date->date += difference;
321 }
322
323 /*****************************************************************************
324  * aout_DateGet : get the date of an audio_date_t
325  *****************************************************************************/
326 mtime_t aout_DateGet( const audio_date_t * p_date )
327 {
328     return p_date->date;
329 }
330
331 /*****************************************************************************
332  * aout_DateIncrement : increment the date and return the result, taking
333  * into account rounding errors
334  *****************************************************************************/
335 mtime_t aout_DateIncrement( audio_date_t * p_date, u32 i_nb_samples )
336 {
337     mtime_t i_dividend = (mtime_t)i_nb_samples * 1000000;
338     p_date->date += i_dividend / p_date->i_divider;
339     p_date->i_remainder += i_dividend % p_date->i_divider;
340     if ( p_date->i_remainder >= p_date->i_divider )
341     {
342         /* This is Bresenham algorithm. */
343         p_date->date++;
344         p_date->i_remainder -= p_date->i_divider;
345     }
346     return p_date->date;
347 }
348