]> git.sesse.net Git - vlc/blob - src/audio_output/mixer.c
* Fixed miscellaneous cosmetic issues with lpcm and s16tofloat32swab modules.
[vlc] / src / audio_output / mixer.c
1 /*****************************************************************************
2  * mixer.c : audio output mixing operations
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: mixer.c,v 1.14 2002/09/20 23:27:04 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 #ifdef HAVE_ALLOCA_H
33 #   include <alloca.h> 
34 #endif
35
36 #include "audio_output.h"
37 #include "aout_internal.h"
38
39 /*****************************************************************************
40  * aout_MixerNew: prepare a mixer plug-in
41  *****************************************************************************
42  * Please note that you must hold the mixer lock.
43  *****************************************************************************/
44 int aout_MixerNew( aout_instance_t * p_aout )
45 {
46     p_aout->mixer.p_module = module_Need( p_aout, "audio mixer", NULL );
47     if ( p_aout->mixer.p_module == NULL )
48     {
49         msg_Err( p_aout, "no suitable aout mixer" );
50         return -1;
51     }
52     return 0;
53 }
54
55 /*****************************************************************************
56  * aout_MixerDelete: delete the mixer
57  *****************************************************************************
58  * Please note that you must hold the mixer lock.
59  *****************************************************************************/
60 void aout_MixerDelete( aout_instance_t * p_aout )
61 {
62     module_Unneed( p_aout, p_aout->mixer.p_module );
63 }
64
65 /*****************************************************************************
66  * MixBuffer: try to prepare one output buffer
67  *****************************************************************************/
68 static int MixBuffer( aout_instance_t * p_aout )
69 {
70     int             i;
71     aout_buffer_t * p_output_buffer;
72     mtime_t start_date, end_date;
73     audio_date_t exact_start_date;
74
75     vlc_mutex_lock( &p_aout->mixer_lock );
76     vlc_mutex_lock( &p_aout->output_fifo_lock );
77     vlc_mutex_lock( &p_aout->input_fifos_lock );
78
79     /* Retrieve the date of the next buffer. */
80     memcpy( &exact_start_date, &p_aout->output.fifo.end_date,
81             sizeof(audio_date_t) );
82     start_date = aout_DateGet( &exact_start_date );
83
84     if ( start_date != 0 && start_date < mdate() )
85     {
86         /* The output is _very_ late. This can only happen if the user
87          * pauses the stream (or if the decoder is buggy, which cannot
88          * happen :). */
89         msg_Warn( p_aout, "output PTS is out of range (%lld), clearing out",
90                   mdate() - start_date );
91         aout_FifoSet( p_aout, &p_aout->output.fifo, 0 );
92         aout_DateSet( &exact_start_date, 0 );
93         start_date = 0;
94     } 
95
96     vlc_mutex_unlock( &p_aout->output_fifo_lock );
97
98     /* See if we have enough data to prepare a new buffer for the audio
99      * output. First : start date. */
100     if ( !start_date )
101     {
102         /* Find the latest start date available. */
103         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
104         {
105             aout_input_t * p_input = p_aout->pp_inputs[i];
106             aout_fifo_t * p_fifo = &p_input->fifo;
107             aout_buffer_t * p_buffer;
108
109             if ( p_input->b_error ) continue;
110
111             p_buffer = p_fifo->p_first;
112             if ( p_buffer == NULL )
113             {
114                 break;
115             }
116
117             if ( !start_date || start_date < p_buffer->start_date )
118             {
119                 aout_DateSet( &exact_start_date, p_buffer->start_date );
120                 start_date = p_buffer->start_date;
121             }
122         }
123
124         if ( i < p_aout->i_nb_inputs )
125         {
126             /* Interrupted before the end... We can't run. */
127             vlc_mutex_unlock( &p_aout->input_fifos_lock );
128             vlc_mutex_unlock( &p_aout->mixer_lock );
129             return -1;
130         }
131     }
132     aout_DateIncrement( &exact_start_date, p_aout->output.i_nb_samples );
133     end_date = aout_DateGet( &exact_start_date );
134
135     /* Check that start_date and end_date are available for all input
136      * streams. */
137     for ( i = 0; i < p_aout->i_nb_inputs; i++ )
138     {
139         aout_input_t * p_input = p_aout->pp_inputs[i];
140         aout_fifo_t * p_fifo = &p_input->fifo;
141         aout_buffer_t * p_buffer;
142         mtime_t prev_date;
143         vlc_bool_t b_drop_buffers;
144
145         if ( p_input->b_error ) continue;
146
147         p_buffer = p_fifo->p_first;
148         if ( p_buffer == NULL )
149         {
150             break;
151         }
152
153         /* Check for the continuity of start_date */
154         while ( p_buffer != NULL && p_buffer->end_date < start_date )
155         {
156             aout_buffer_t * p_next = p_buffer->p_next;
157             msg_Err( p_aout, "the mixer got a packet in the past (%lld)",
158                      start_date - p_buffer->end_date );
159             aout_BufferFree( p_buffer );
160             p_fifo->p_first = p_buffer = p_next;
161             p_input->p_first_byte_to_mix = NULL;
162         }
163         if ( p_buffer == NULL )
164         {
165             p_fifo->pp_last = &p_fifo->p_first;
166             break;
167         }
168
169         if ( !AOUT_FMT_NON_LINEAR( &p_aout->mixer.mixer ) )
170         {
171             /* Additionally check that p_first_byte_to_mix is well
172              * located. */
173             unsigned long i_nb_bytes = (start_date - p_buffer->start_date)
174                             * p_aout->mixer.mixer.i_bytes_per_frame
175                             * p_aout->mixer.mixer.i_rate
176                             / p_aout->mixer.mixer.i_frame_length
177                             / 1000000;
178             ptrdiff_t mixer_nb_bytes;
179
180             if ( p_input->p_first_byte_to_mix == NULL )
181             {
182                 p_input->p_first_byte_to_mix = p_buffer->p_buffer;
183             }
184             mixer_nb_bytes = p_input->p_first_byte_to_mix
185                               - p_buffer->p_buffer;
186
187             if ( !((i_nb_bytes + p_aout->mixer.mixer.i_bytes_per_frame
188                      > mixer_nb_bytes) &&
189                    (i_nb_bytes < p_aout->mixer.mixer.i_bytes_per_frame
190                      + mixer_nb_bytes)) )
191             {
192                 msg_Warn( p_aout,
193                           "mixer start isn't output start (%d)",
194                           i_nb_bytes - mixer_nb_bytes );
195
196                 /* Round to the nearest multiple */
197                 i_nb_bytes /= p_aout->mixer.mixer.i_bytes_per_frame;
198                 i_nb_bytes *= p_aout->mixer.mixer.i_bytes_per_frame;
199                 p_input->p_first_byte_to_mix = p_buffer->p_buffer
200                                                 + i_nb_bytes;
201             }
202         }
203
204         /* Check that we have enough samples. */
205         for ( ; ; )
206         {
207             p_buffer = p_fifo->p_first;
208             if ( p_buffer == NULL ) break;
209             if ( p_buffer->end_date >= end_date ) break;
210
211             /* Check that all buffers are contiguous. */
212             prev_date = p_fifo->p_first->end_date;
213             p_buffer = p_buffer->p_next;
214             b_drop_buffers = 0;
215             for ( ; p_buffer != NULL; p_buffer = p_buffer->p_next )
216             {
217                 if ( prev_date != p_buffer->start_date )
218                 {
219                     msg_Warn( p_aout,
220                               "buffer hole, dropping packets (%lld)",
221                               p_buffer->start_date - prev_date );
222                     b_drop_buffers = 1;
223                     break;
224                 }
225                 if ( p_buffer->end_date >= end_date ) break;
226                 prev_date = p_buffer->end_date;
227             }
228             if ( b_drop_buffers )
229             {
230                 aout_buffer_t * p_deleted = p_fifo->p_first;
231                 while ( p_deleted != NULL && p_deleted != p_buffer )
232                 {
233                     aout_buffer_t * p_next = p_deleted->p_next;
234                     aout_BufferFree( p_deleted );
235                     p_deleted = p_next;
236                 }
237                 p_fifo->p_first = p_deleted; /* == p_buffer */
238             }
239             else break;
240         }
241         if ( p_buffer == NULL ) break;
242     }
243
244     if ( i < p_aout->i_nb_inputs )
245     {
246         /* Interrupted before the end... We can't run. */
247         vlc_mutex_unlock( &p_aout->input_fifos_lock );
248         vlc_mutex_unlock( &p_aout->mixer_lock );
249         return -1;
250     }
251
252     /* Run the mixer. */
253     aout_BufferAlloc( &p_aout->mixer.output_alloc,
254                       ((u64)p_aout->output.i_nb_samples * 1000000)
255                         / p_aout->output.output.i_rate,
256                       /* This is a bit kludgy, but is actually only used
257                        * for the S/PDIF dummy mixer : */
258                       p_aout->pp_inputs[0]->fifo.p_first,
259                       p_output_buffer );
260     if ( p_output_buffer == NULL )
261     {
262         msg_Err( p_aout, "out of memory" );
263         vlc_mutex_unlock( &p_aout->input_fifos_lock );
264         vlc_mutex_unlock( &p_aout->mixer_lock );
265         return -1;
266     }
267     /* This is again a bit kludgy - for the S/PDIF mixer. */
268     if ( p_aout->mixer.output_alloc.i_alloc_type != AOUT_ALLOC_NONE )
269     {
270         p_output_buffer->i_nb_samples = p_aout->output.i_nb_samples;
271         p_output_buffer->i_nb_bytes = p_aout->output.i_nb_samples
272                               * p_aout->mixer.mixer.i_bytes_per_frame
273                               / p_aout->mixer.mixer.i_frame_length;
274     }
275     p_output_buffer->start_date = start_date;
276     p_output_buffer->end_date = end_date;
277
278     p_aout->mixer.pf_do_work( p_aout, p_output_buffer );
279
280     vlc_mutex_unlock( &p_aout->input_fifos_lock );
281
282     aout_OutputPlay( p_aout, p_output_buffer );
283
284     vlc_mutex_unlock( &p_aout->mixer_lock );
285
286     return 0;
287 }
288
289 /*****************************************************************************
290  * aout_MixerRun: entry point for the mixer & post-filters processing
291  *****************************************************************************/
292 void aout_MixerRun( aout_instance_t * p_aout )
293 {
294     while( MixBuffer( p_aout ) != -1 );
295 }
296
297 /*****************************************************************************
298  * aout_MixerMultiplierSet: set p_aout->mixer.f_multiplier
299  *****************************************************************************
300  * Please note that we assume that you own the mixer lock when entering this
301  * function. This function returns -1 on error.
302  *****************************************************************************/
303 int aout_MixerMultiplierSet( aout_instance_t * p_aout, float f_multiplier )
304 {
305     float f_old = p_aout->mixer.f_multiplier;
306
307     if ( p_aout->mixer.mixer.i_format != AOUT_FMT_FLOAT32 )
308     {
309         msg_Warn( p_aout, "MixerMultiplierSet called for non-float32 mixer" );
310         return -1;
311     }
312
313     aout_MixerDelete( p_aout );
314
315     p_aout->mixer.f_multiplier = f_multiplier;
316
317     if ( aout_MixerNew( p_aout ) )
318     {
319         p_aout->mixer.f_multiplier = f_old;
320         aout_MixerNew( p_aout );
321         return -1;
322     }
323
324     return 0;
325 }
326
327 /*****************************************************************************
328  * aout_MixerMultiplierGet: get p_aout->mixer.f_multiplier
329  *****************************************************************************
330  * Please note that we assume that you own the mixer lock when entering this
331  * function. This function returns -1 on error.
332  *****************************************************************************/
333 int aout_MixerMultiplierGet( aout_instance_t * p_aout, float * pf_multiplier )
334 {
335     if ( p_aout->mixer.mixer.i_format != AOUT_FMT_FLOAT32 )
336     {
337         msg_Warn( p_aout, "MixerMultiplierGet called for non-float32 mixer" );
338         return -1;
339     }
340
341     *pf_multiplier = p_aout->mixer.f_multiplier;
342     return 0;
343 }
344