]> git.sesse.net Git - vlc/blob - src/audio_output/dec.c
Do not use pf_make_region as it leads to a horrible hack.
[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     aout_lock_mixer( p_aout );
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     aout_lock_input_fifos( p_aout );
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                 aout_lock_input( p_aout, p_aout->pp_inputs[i] );
125                 aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
126                 aout_unlock_input( p_aout, p_aout->pp_inputs[i] );
127             }
128             aout_unlock_input_fifos( p_aout );
129             aout_unlock_mixer( p_aout );
130             return p_input;
131         }
132
133         /* Create other input streams. */
134         for ( i = 0; i < p_aout->i_nb_inputs - 1; i++ )
135         {
136             aout_lock_input( p_aout, p_aout->pp_inputs[i] );
137             aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
138             aout_InputNew( p_aout, p_aout->pp_inputs[i] );
139             aout_unlock_input( p_aout, p_aout->pp_inputs[i] );
140         }
141     }
142     else
143     {
144         aout_MixerDelete( p_aout );
145     }
146
147     if ( aout_MixerNew( p_aout ) == -1 )
148     {
149         aout_OutputDelete( p_aout );
150         aout_unlock_input_fifos( p_aout );
151         goto error;
152     }
153
154     aout_InputNew( p_aout, p_input );
155     aout_unlock_input_fifos( p_aout );
156
157     aout_unlock_mixer( p_aout );
158     p_input->i_desync = var_CreateGetInteger( p_this, "audio-desync" ) * 1000;
159
160     p_input_thread = (input_thread_t *)vlc_object_find( p_this,
161                                            VLC_OBJECT_INPUT, FIND_PARENT );
162     if( p_input_thread )
163     {
164         p_input->i_pts_delay = p_input_thread->i_pts_delay;
165         p_input->i_pts_delay += p_input->i_desync;
166         p_input->p_input_thread = p_input_thread;
167         vlc_object_release( p_input_thread );
168     }
169     else
170     {
171         p_input->i_pts_delay = DEFAULT_PTS_DELAY;
172         p_input->i_pts_delay += p_input->i_desync;
173         p_input->p_input_thread = NULL;
174     }
175
176     return p_input;
177
178 error:
179     aout_unlock_mixer( p_aout );
180     return NULL;
181 }
182
183 aout_input_t * __aout_DecNew( vlc_object_t * p_this,
184                               aout_instance_t ** pp_aout,
185                               audio_sample_format_t * p_format,
186                               audio_replay_gain_t *p_replay_gain )
187 {
188     aout_instance_t *p_aout = *pp_aout;
189     if ( p_aout == NULL )
190     {
191         msg_Dbg( p_this, "no aout present, spawning one" );
192         p_aout = aout_New( p_this );
193
194         /* Everything failed, I'm a loser, I just wanna die */
195         if( p_aout == NULL )
196             return NULL;
197
198         vlc_object_attach( p_aout, p_this );
199         *pp_aout = p_aout;
200     }
201
202     return DecNew( p_this, p_aout, p_format, p_replay_gain );
203 }
204
205 /*****************************************************************************
206  * aout_DecDelete : delete a decoder
207  *****************************************************************************/
208 int aout_DecDelete( aout_instance_t * p_aout, aout_input_t * p_input )
209 {
210     int i_input;
211
212     /* This function can only be called by the decoder itself, so no need
213      * to lock p_input->lock. */
214     aout_lock_mixer( p_aout );
215
216     for ( i_input = 0; i_input < p_aout->i_nb_inputs; i_input++ )
217     {
218         if ( p_aout->pp_inputs[i_input] == p_input )
219         {
220             break;
221         }
222     }
223
224     if ( i_input == p_aout->i_nb_inputs )
225     {
226         msg_Err( p_aout, "cannot find an input to delete" );
227         aout_unlock_mixer( p_aout );
228         return -1;
229     }
230
231     /* Remove the input from the list. */
232     memmove( &p_aout->pp_inputs[i_input], &p_aout->pp_inputs[i_input + 1],
233              (AOUT_MAX_INPUTS - i_input - 1) * sizeof(aout_input_t *) );
234     p_aout->i_nb_inputs--;
235
236     aout_InputDelete( p_aout, p_input );
237
238     vlc_mutex_destroy( &p_input->lock );
239     free( p_input );
240
241     if ( !p_aout->i_nb_inputs )
242     {
243         aout_OutputDelete( p_aout );
244         aout_MixerDelete( p_aout );
245         if ( var_Type( p_aout, "audio-device" ) != 0 )
246         {
247             var_Destroy( p_aout, "audio-device" );
248         }
249         if ( var_Type( p_aout, "audio-channels" ) != 0 )
250         {
251             var_Destroy( p_aout, "audio-channels" );
252         }
253     }
254
255     aout_unlock_mixer( p_aout );
256
257     return 0;
258 }
259
260
261 /*
262  * Buffer management
263  */
264
265 /*****************************************************************************
266  * aout_DecNewBuffer : ask for a new empty buffer
267  *****************************************************************************/
268 aout_buffer_t * aout_DecNewBuffer( aout_input_t * p_input,
269                                    size_t i_nb_samples )
270 {
271     aout_buffer_t * p_buffer;
272     mtime_t duration;
273
274     aout_lock_input( NULL, p_input );
275
276     if ( p_input->b_error )
277     {
278         aout_unlock_input( NULL, p_input );
279         return NULL;
280     }
281
282     duration = (1000000 * (mtime_t)i_nb_samples) / p_input->input.i_rate;
283
284     /* This necessarily allocates in the heap. */
285     aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_buffer );
286     if( p_buffer != NULL )
287         p_buffer->i_nb_bytes = i_nb_samples * p_input->input.i_bytes_per_frame
288                                   / p_input->input.i_frame_length;
289
290     /* Suppose the decoder doesn't have more than one buffered buffer */
291     p_input->b_changed = 0;
292
293     aout_unlock_input( NULL, p_input );
294
295     if( p_buffer == NULL )
296         return NULL;
297
298     p_buffer->i_nb_samples = i_nb_samples;
299     p_buffer->start_date = p_buffer->end_date = 0;
300     return p_buffer;
301 }
302
303 /*****************************************************************************
304  * aout_DecDeleteBuffer : destroy an undecoded buffer
305  *****************************************************************************/
306 void aout_DecDeleteBuffer( aout_instance_t * p_aout, aout_input_t * p_input,
307                            aout_buffer_t * p_buffer )
308 {
309     (void)p_aout; (void)p_input;
310     aout_BufferFree( p_buffer );
311 }
312
313 /*****************************************************************************
314  * aout_DecPlay : filter & mix the decoded buffer
315  *****************************************************************************/
316 int aout_DecPlay( aout_instance_t * p_aout, aout_input_t * p_input,
317                   aout_buffer_t * p_buffer, int i_input_rate )
318 {
319     if ( p_buffer->start_date == 0 )
320     {
321         msg_Warn( p_aout, "non-dated buffer received" );
322         aout_BufferFree( p_buffer );
323         return -1;
324     }
325
326 #ifndef FIXME
327     /* This hack for #transcode{acodec=...}:display to work -- Courmisch */
328     if( i_input_rate == 0 )
329         i_input_rate = INPUT_RATE_DEFAULT;
330 #endif
331     if( i_input_rate > INPUT_RATE_DEFAULT * AOUT_MAX_INPUT_RATE ||
332         i_input_rate < INPUT_RATE_DEFAULT / AOUT_MAX_INPUT_RATE )
333     {
334         aout_BufferFree( p_buffer );
335         return 0;
336     }
337
338     /* Apply the desynchronisation requested by the user */
339     p_buffer->start_date += p_input->i_desync;
340     p_buffer->end_date += p_input->i_desync;
341
342     if ( p_buffer->start_date > mdate() + p_input->i_pts_delay +
343          AOUT_MAX_ADVANCE_TIME )
344     {
345         msg_Warn( p_aout, "received buffer in the future (%"PRId64")",
346                   p_buffer->start_date - mdate());
347         if( p_input->p_input_thread )
348         {
349             vlc_mutex_lock( &p_input->p_input_thread->p->counters.counters_lock);
350             stats_UpdateInteger( p_aout,
351                            p_input->p_input_thread->p->counters.p_lost_abuffers,
352                            1, NULL );
353             vlc_mutex_unlock( &p_input->p_input_thread->p->counters.counters_lock);
354         }
355         aout_BufferFree( p_buffer );
356         return -1;
357     }
358
359     p_buffer->end_date = p_buffer->start_date
360                             + (mtime_t)p_buffer->i_nb_samples * 1000000
361                                 / p_input->input.i_rate;
362
363     aout_lock_input( p_aout, p_input );
364
365     if ( p_input->b_error )
366     {
367         aout_unlock_input( p_aout, p_input );
368         aout_BufferFree( p_buffer );
369         return -1;
370     }
371
372     if ( p_input->b_changed )
373     {
374         /* Maybe the allocation size has changed. Re-allocate a buffer. */
375         aout_buffer_t * p_new_buffer;
376         mtime_t duration = (1000000 * (mtime_t)p_buffer->i_nb_samples)
377                             / p_input->input.i_rate;
378
379         aout_BufferAlloc( &p_input->input_alloc, duration, NULL, p_new_buffer );
380         vlc_memcpy( p_new_buffer->p_buffer, p_buffer->p_buffer,
381                     p_buffer->i_nb_bytes );
382         p_new_buffer->i_nb_samples = p_buffer->i_nb_samples;
383         p_new_buffer->i_nb_bytes = p_buffer->i_nb_bytes;
384         p_new_buffer->start_date = p_buffer->start_date;
385         p_new_buffer->end_date = p_buffer->end_date;
386         aout_BufferFree( p_buffer );
387         p_buffer = p_new_buffer;
388         p_input->b_changed = 0;
389     }
390
391     /* If the buffer is too early, wait a while. */
392     mwait( p_buffer->start_date - AOUT_MAX_PREPARE_TIME );
393
394     int ret = aout_InputPlay( p_aout, p_input, p_buffer, i_input_rate );
395
396     aout_unlock_input( p_aout, p_input );
397
398     if ( ret == -1 ) return -1;
399
400     /* Run the mixer if it is able to run. */
401     aout_lock_mixer( p_aout );
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     aout_unlock_mixer( p_aout );
412
413     return 0;
414 }