]> git.sesse.net Git - vlc/blob - src/audio_output/dec.c
audio_output: Don't forget to unlock in case of error in DecNew().
[vlc] / src / audio_output / dec.c
1 /*****************************************************************************
2  * dec.c : audio output API towards decoders
3  *****************************************************************************
4  * Copyright (C) 2002-2007 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32
33 #ifdef HAVE_ALLOCA_H
34 #   include <alloca.h>
35 #endif
36
37 #include <vlc_aout.h>
38 #include <vlc_input.h>
39
40 #include "aout_internal.h"
41
42 /** FIXME: Ugly but needed to access the counters */
43 #include "input/input_internal.h"
44
45 /*****************************************************************************
46  * aout_DecNew : create a decoder
47  *****************************************************************************/
48 static aout_input_t * DecNew( vlc_object_t * p_this, aout_instance_t * p_aout,
49                               audio_sample_format_t *p_format,
50                               audio_replay_gain_t *p_replay_gain )
51 {
52     aout_input_t * p_input;
53     input_thread_t * p_input_thread;
54
55     /* Sanitize audio format */
56     if( p_format->i_channels > 32 )
57     {
58         msg_Err( p_aout, "too many audio channels (%u)",
59                  p_format->i_channels );
60         return NULL;
61     }
62     if( p_format->i_channels <= 0 )
63     {
64         msg_Err( p_aout, "no audio channels" );
65         return NULL;
66     }
67
68     if( p_format->i_rate > 192000 )
69     {
70         msg_Err( p_aout, "excessive audio sample frequency (%u)",
71                  p_format->i_rate );
72         return NULL;
73     }
74     if( p_format->i_rate < 4000 )
75     {
76         msg_Err( p_aout, "too low audio sample frequency (%u)",
77                  p_format->i_rate );
78         return NULL;
79     }
80
81     /* We can only be called by the decoder, so no need to lock
82      * p_input->lock. */
83     vlc_mutex_lock( &p_aout->mixer_lock );
84
85     if ( p_aout->i_nb_inputs >= AOUT_MAX_INPUTS )
86     {
87         msg_Err( p_aout, "too many inputs already (%d)", p_aout->i_nb_inputs );
88         goto error;
89     }
90
91     p_input = malloc(sizeof(aout_input_t));
92     if ( p_input == NULL )
93         goto error;
94     memset( p_input, 0, sizeof(aout_input_t) );
95
96     vlc_mutex_init( &p_input->lock );
97
98     p_input->b_changed = 0;
99     p_input->b_error = 1;
100
101     aout_FormatPrepare( p_format );
102
103     memcpy( &p_input->input, p_format,
104             sizeof(audio_sample_format_t) );
105     if( p_replay_gain )
106         p_input->replay_gain = *p_replay_gain;
107
108     vlc_mutex_lock( &p_aout->input_fifos_lock );
109     p_aout->pp_inputs[p_aout->i_nb_inputs] = p_input;
110     p_aout->i_nb_inputs++;
111
112     if ( p_aout->mixer.b_error )
113     {
114         int i;
115
116         var_Destroy( p_aout, "audio-device" );
117         var_Destroy( p_aout, "audio-channels" );
118
119         /* Recreate the output using the new format. */
120         if ( aout_OutputNew( p_aout, p_format ) < 0 )
121         {
122             for ( i = 0; i < p_aout->i_nb_inputs - 1; i++ )
123             {
124                 vlc_mutex_lock( &p_aout->pp_inputs[i]->lock );
125                 aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
126                 vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
127             }
128             vlc_mutex_unlock( &p_aout->mixer_lock );
129             return p_input;
130         }
131
132         /* Create other input streams. */
133         for ( i = 0; i < p_aout->i_nb_inputs - 1; i++ )
134         {
135             vlc_mutex_lock( &p_aout->pp_inputs[i]->lock );
136             aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
137             aout_InputNew( p_aout, p_aout->pp_inputs[i] );
138             vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
139         }
140     }
141     else
142     {
143         aout_MixerDelete( p_aout );
144     }
145
146     if ( aout_MixerNew( p_aout ) == -1 )
147     {
148         aout_OutputDelete( p_aout );
149         vlc_mutex_unlock( &p_aout->input_fifos_lock );
150         goto error;
151     }
152
153     aout_InputNew( p_aout, p_input );
154     vlc_mutex_unlock( &p_aout->input_fifos_lock );
155
156     vlc_mutex_unlock( &p_aout->mixer_lock );
157     p_input->i_desync = var_CreateGetInteger( p_this, "audio-desync" ) * 1000;
158
159     p_input_thread = (input_thread_t *)vlc_object_find( p_this,
160                                            VLC_OBJECT_INPUT, FIND_PARENT );
161     if( p_input_thread )
162     {
163         p_input->i_pts_delay = p_input_thread->i_pts_delay;
164         p_input->i_pts_delay += p_input->i_desync;
165         p_input->p_input_thread = p_input_thread;
166         vlc_object_release( p_input_thread );
167     }
168     else
169     {
170         p_input->i_pts_delay = DEFAULT_PTS_DELAY;
171         p_input->i_pts_delay += p_input->i_desync;
172         p_input->p_input_thread = NULL;
173     }
174
175     return p_input;
176
177 error:
178     vlc_mutex_unlock( &p_aout->mixer_lock );
179     return NULL;
180 }
181
182 aout_input_t * __aout_DecNew( vlc_object_t * p_this,
183                               aout_instance_t ** pp_aout,
184                               audio_sample_format_t * p_format,
185                               audio_replay_gain_t *p_replay_gain )
186 {
187     aout_instance_t *p_aout = *pp_aout;
188     if ( p_aout == NULL )
189     {
190         msg_Dbg( p_this, "no aout present, spawning one" );
191         p_aout = aout_New( p_this );
192
193         /* Everything failed, I'm a loser, I just wanna die */
194         if( p_aout == NULL )
195             return NULL;
196
197         vlc_object_attach( p_aout, p_this );
198         *pp_aout = p_aout;
199     }
200
201     return DecNew( p_this, p_aout, p_format, p_replay_gain );
202 }
203
204 /*****************************************************************************
205  * aout_DecDelete : delete a decoder
206  *****************************************************************************/
207 int aout_DecDelete( aout_instance_t * p_aout, aout_input_t * p_input )
208 {
209     int i_input;
210
211     /* This function can only be called by the decoder itself, so no need
212      * to lock p_input->lock. */
213     vlc_mutex_lock( &p_aout->mixer_lock );
214
215     for ( i_input = 0; i_input < p_aout->i_nb_inputs; i_input++ )
216     {
217         if ( p_aout->pp_inputs[i_input] == p_input )
218         {
219             break;
220         }
221     }
222
223     if ( i_input == p_aout->i_nb_inputs )
224     {
225         msg_Err( p_aout, "cannot find an input to delete" );
226         return -1;
227     }
228
229     /* Remove the input from the list. */
230     memmove( &p_aout->pp_inputs[i_input], &p_aout->pp_inputs[i_input + 1],
231              (AOUT_MAX_INPUTS - i_input - 1) * sizeof(aout_input_t *) );
232     p_aout->i_nb_inputs--;
233
234     aout_InputDelete( p_aout, p_input );
235
236     vlc_mutex_destroy( &p_input->lock );
237     free( p_input );
238
239     if ( !p_aout->i_nb_inputs )
240     {
241         aout_OutputDelete( p_aout );
242         aout_MixerDelete( p_aout );
243         if ( var_Type( p_aout, "audio-device" ) != 0 )
244         {
245             var_Destroy( p_aout, "audio-device" );
246         }
247         if ( var_Type( p_aout, "audio-channels" ) != 0 )
248         {
249             var_Destroy( p_aout, "audio-channels" );
250         }
251     }
252
253     vlc_mutex_unlock( &p_aout->mixer_lock );
254
255     return 0;
256 }
257
258
259 /*
260  * Buffer management
261  */
262
263 /*****************************************************************************
264  * aout_DecNewBuffer : ask for a new empty buffer
265  *****************************************************************************/
266 aout_buffer_t * aout_DecNewBuffer( aout_input_t * p_input,
267                                    size_t i_nb_samples )
268 {
269     aout_buffer_t * p_buffer;
270     mtime_t duration;
271
272     vlc_mutex_lock( &p_input->lock );
273
274     if ( p_input->b_error )
275     {
276         vlc_mutex_unlock( &p_input->lock );
277         return NULL;
278     }
279
280     duration = (1000000 * (mtime_t)i_nb_samples) / p_input->input.i_rate;
281
282     /* This necessarily allocates in the heap. */
283     aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_buffer );
284     if( p_buffer != NULL )
285         p_buffer->i_nb_bytes = i_nb_samples * p_input->input.i_bytes_per_frame
286                                   / p_input->input.i_frame_length;
287
288     /* Suppose the decoder doesn't have more than one buffered buffer */
289     p_input->b_changed = 0;
290
291     vlc_mutex_unlock( &p_input->lock );
292
293     if( p_buffer == NULL )
294         return NULL;
295
296     p_buffer->i_nb_samples = i_nb_samples;
297     p_buffer->start_date = p_buffer->end_date = 0;
298     return p_buffer;
299 }
300
301 /*****************************************************************************
302  * aout_DecDeleteBuffer : destroy an undecoded buffer
303  *****************************************************************************/
304 void aout_DecDeleteBuffer( aout_instance_t * p_aout, aout_input_t * p_input,
305                            aout_buffer_t * p_buffer )
306 {
307     (void)p_aout; (void)p_input;
308     aout_BufferFree( p_buffer );
309 }
310
311 /*****************************************************************************
312  * aout_DecPlay : filter & mix the decoded buffer
313  *****************************************************************************/
314 int aout_DecPlay( aout_instance_t * p_aout, aout_input_t * p_input,
315                   aout_buffer_t * p_buffer, int i_input_rate )
316 {
317     if ( p_buffer->start_date == 0 )
318     {
319         msg_Warn( p_aout, "non-dated buffer received" );
320         aout_BufferFree( p_buffer );
321         return -1;
322     }
323
324 #ifndef FIXME
325     /* This hack for #transcode{acodec=...}:display to work -- Courmisch */
326     if( i_input_rate == 0 )
327         i_input_rate = INPUT_RATE_DEFAULT;
328 #endif
329     if( i_input_rate > INPUT_RATE_DEFAULT * AOUT_MAX_INPUT_RATE ||
330         i_input_rate < INPUT_RATE_DEFAULT / AOUT_MAX_INPUT_RATE )
331     {
332         aout_BufferFree( p_buffer );
333         return 0;
334     }
335
336     /* Apply the desynchronisation requested by the user */
337     p_buffer->start_date += p_input->i_desync;
338     p_buffer->end_date += p_input->i_desync;
339
340     if ( p_buffer->start_date > mdate() + p_input->i_pts_delay +
341          AOUT_MAX_ADVANCE_TIME )
342     {
343         msg_Warn( p_aout, "received buffer in the future (%"PRId64")",
344                   p_buffer->start_date - mdate());
345         if( p_input->p_input_thread )
346         {
347             vlc_mutex_lock( &p_input->p_input_thread->p->counters.counters_lock);
348             stats_UpdateInteger( p_aout,
349                            p_input->p_input_thread->p->counters.p_lost_abuffers,
350                            1, NULL );
351             vlc_mutex_unlock( &p_input->p_input_thread->p->counters.counters_lock);
352         }
353         aout_BufferFree( p_buffer );
354         return -1;
355     }
356
357     p_buffer->end_date = p_buffer->start_date
358                             + (mtime_t)p_buffer->i_nb_samples * 1000000
359                                 / p_input->input.i_rate;
360
361     vlc_mutex_lock( &p_input->lock );
362
363     if ( p_input->b_error )
364     {
365         vlc_mutex_unlock( &p_input->lock );
366         aout_BufferFree( p_buffer );
367         return -1;
368     }
369
370     if ( p_input->b_changed )
371     {
372         /* Maybe the allocation size has changed. Re-allocate a buffer. */
373         aout_buffer_t * p_new_buffer;
374         mtime_t duration = (1000000 * (mtime_t)p_buffer->i_nb_samples)
375                             / p_input->input.i_rate;
376
377         aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_new_buffer );
378         vlc_memcpy( p_new_buffer->p_buffer, p_buffer->p_buffer,
379                     p_buffer->i_nb_bytes );
380         p_new_buffer->i_nb_samples = p_buffer->i_nb_samples;
381         p_new_buffer->i_nb_bytes = p_buffer->i_nb_bytes;
382         p_new_buffer->start_date = p_buffer->start_date;
383         p_new_buffer->end_date = p_buffer->end_date;
384         aout_BufferFree( p_buffer );
385         p_buffer = p_new_buffer;
386         p_input->b_changed = 0;
387     }
388
389     /* If the buffer is too early, wait a while. */
390     mwait( p_buffer->start_date - AOUT_MAX_PREPARE_TIME );
391
392     if ( aout_InputPlay( p_aout, p_input, p_buffer, i_input_rate ) == -1 )
393     {
394         vlc_mutex_unlock( &p_input->lock );
395         return -1;
396     }
397
398     vlc_mutex_unlock( &p_input->lock );
399
400     /* Run the mixer if it is able to run. */
401     vlc_mutex_lock( &p_aout->mixer_lock );
402     aout_MixerRun( p_aout );
403     if( p_input->p_input_thread )
404     {
405         vlc_mutex_lock( &p_input->p_input_thread->p->counters.counters_lock);
406         stats_UpdateInteger( p_aout,
407                              p_input->p_input_thread->p->counters.p_played_abuffers,
408                              1, NULL );
409         vlc_mutex_unlock( &p_input->p_input_thread->p->counters.counters_lock);
410     }
411     vlc_mutex_unlock( &p_aout->mixer_lock );
412
413     return 0;
414 }