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