]> git.sesse.net Git - vlc/blob - src/audio_output/dec.c
Remove aout_mixer_input_t.begin
[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 <assert.h>
32
33 #include <vlc_common.h>
34
35 #include <vlc_aout.h>
36 #include <vlc_input.h>
37
38 #include "aout_internal.h"
39
40 #undef aout_DecNew
41 /**
42  * Creates an audio output
43  */
44 aout_input_t *aout_DecNew( aout_instance_t *p_aout,
45                            audio_sample_format_t *p_format,
46                            const audio_replay_gain_t *p_replay_gain,
47                            const aout_request_vout_t *p_request_vout )
48 {
49     /* Sanitize audio format */
50     if( p_format->i_channels > 32 )
51     {
52         msg_Err( p_aout, "too many audio channels (%u)",
53                  p_format->i_channels );
54         return NULL;
55     }
56     if( p_format->i_channels <= 0 )
57     {
58         msg_Err( p_aout, "no audio channels" );
59         return NULL;
60     }
61     if( p_format->i_channels != aout_FormatNbChannels( p_format ) )
62     {
63         msg_Err( p_aout, "incompatible audio channels count with layout mask" );
64         return NULL;
65     }
66
67     if( p_format->i_rate > 192000 )
68     {
69         msg_Err( p_aout, "excessive audio sample frequency (%u)",
70                  p_format->i_rate );
71         return NULL;
72     }
73     if( p_format->i_rate < 4000 )
74     {
75         msg_Err( p_aout, "too low audio sample frequency (%u)",
76                  p_format->i_rate );
77         return NULL;
78     }
79
80     aout_input_t *p_input = calloc( 1, sizeof(aout_input_t));
81     if( !p_input )
82         return NULL;
83
84     vlc_mutex_init( &p_input->lock );
85     p_input->b_error = true;
86     p_input->b_paused = false;
87     p_input->i_pause_date = 0;
88
89     aout_FormatPrepare( p_format );
90
91     memcpy( &p_input->input, p_format,
92             sizeof(audio_sample_format_t) );
93     if( p_replay_gain )
94         p_input->replay_gain = *p_replay_gain;
95
96     /* We can only be called by the decoder, so no need to lock
97      * p_input->lock. */
98     aout_lock_mixer( p_aout );
99     aout_lock_input_fifos( p_aout );
100     assert( p_aout->p_input == NULL );
101     p_aout->p_input = p_input;
102
103     var_Destroy( p_aout, "audio-device" );
104     var_Destroy( p_aout, "audio-channels" );
105
106     /* Recreate the output using the new format. */
107     if( aout_OutputNew( p_aout, p_format ) < 0 )
108 #warning Input without output and mixer = bad idea.
109         goto out;
110
111     assert( p_aout->p_mixer == NULL );
112     if( aout_MixerNew( p_aout ) == -1 )
113     {
114         aout_OutputDelete( p_aout );
115 #warning Memory leak.
116         p_input = NULL;
117         goto out;
118     }
119
120     aout_InputNew( p_aout, p_input, p_request_vout );
121 out:
122     aout_unlock_input_fifos( p_aout );
123     aout_unlock_mixer( p_aout );
124     return p_input;
125 }
126
127 /*****************************************************************************
128  * aout_DecDelete : delete a decoder
129  *****************************************************************************/
130 int aout_DecDelete( aout_instance_t * p_aout, aout_input_t * p_input )
131 {
132     /* This function can only be called by the decoder itself, so no need
133      * to lock p_input->lock. */
134     aout_lock_mixer( p_aout );
135
136     if( p_input != p_aout->p_input )
137     {
138         msg_Err( p_aout, "cannot find an input to delete" );
139         aout_unlock_mixer( p_aout );
140         return -1;
141     }
142
143     /* Remove the input. */
144     p_aout->p_input = NULL;
145     aout_InputDelete( p_aout, p_input );
146
147     aout_OutputDelete( p_aout );
148     aout_MixerDelete( p_aout );
149     var_Destroy( p_aout, "audio-device" );
150     var_Destroy( p_aout, "audio-channels" );
151
152     aout_unlock_mixer( p_aout );
153
154     vlc_mutex_destroy( &p_input->lock );
155     free( p_input );
156     return 0;
157 }
158
159
160 /*
161  * Buffer management
162  */
163
164 /*****************************************************************************
165  * aout_DecNewBuffer : ask for a new empty buffer
166  *****************************************************************************/
167 aout_buffer_t * aout_DecNewBuffer( aout_input_t * p_input,
168                                    size_t i_nb_samples )
169 {
170     block_t *block;
171     size_t length;
172
173     aout_lock_input( NULL, p_input );
174
175     if ( p_input->b_error )
176     {
177         aout_unlock_input( NULL, p_input );
178         return NULL;
179     }
180
181     length = i_nb_samples * p_input->input.i_bytes_per_frame
182                           / p_input->input.i_frame_length;
183     block = block_Alloc( length );
184
185     aout_unlock_input( NULL, p_input );
186
187     if( likely(block != NULL) )
188     {
189         block->i_nb_samples = i_nb_samples;
190         block->i_pts = block->i_length = 0;
191     }
192     return block;
193 }
194
195 /*****************************************************************************
196  * aout_DecDeleteBuffer : destroy an undecoded buffer
197  *****************************************************************************/
198 void aout_DecDeleteBuffer( aout_instance_t * p_aout, aout_input_t * p_input,
199                            aout_buffer_t * p_buffer )
200 {
201     (void)p_aout; (void)p_input;
202     aout_BufferFree( p_buffer );
203 }
204
205 /*****************************************************************************
206  * aout_DecPlay : filter & mix the decoded buffer
207  *****************************************************************************/
208 int aout_DecPlay( aout_instance_t * p_aout, aout_input_t * p_input,
209                   aout_buffer_t * p_buffer, int i_input_rate )
210 {
211     assert( i_input_rate >= INPUT_RATE_DEFAULT / AOUT_MAX_INPUT_RATE &&
212             i_input_rate <= INPUT_RATE_DEFAULT * AOUT_MAX_INPUT_RATE );
213
214     assert( p_buffer->i_pts > 0 );
215
216     p_buffer->i_length = (mtime_t)p_buffer->i_nb_samples * 1000000
217                                 / p_input->input.i_rate;
218
219     aout_lock_mixer( p_aout );
220     aout_lock_input( p_aout, p_input );
221
222     if( p_input->b_error )
223     {
224         aout_unlock_input( p_aout, p_input );
225         aout_unlock_mixer( p_aout );
226
227         aout_BufferFree( p_buffer );
228         return -1;
229     }
230
231     aout_InputCheckAndRestart( p_aout, p_input );
232     aout_unlock_mixer( p_aout );
233
234     int i_ret = aout_InputPlay( p_aout, p_input, p_buffer, i_input_rate );
235
236     aout_unlock_input( p_aout, p_input );
237
238     if( i_ret == -1 )
239         return -1;
240
241     /* Run the mixer if it is able to run. */
242     aout_lock_mixer( p_aout );
243     aout_MixerRun( p_aout, p_aout->mixer_multiplier );
244     aout_unlock_mixer( p_aout );
245
246     return 0;
247 }
248
249 int aout_DecGetResetLost( aout_instance_t *p_aout, aout_input_t *p_input )
250 {
251     aout_lock_input( p_aout, p_input );
252     int i_value = p_input->i_buffer_lost;
253     p_input->i_buffer_lost = 0;
254     aout_unlock_input( p_aout, p_input );
255
256     return i_value;
257 }
258
259 void aout_DecChangePause( aout_instance_t *p_aout, aout_input_t *p_input, bool b_paused, mtime_t i_date )
260 {
261     mtime_t i_duration = 0;
262     aout_lock_input( p_aout, p_input );
263     assert( !p_input->b_paused || !b_paused );
264     if( p_input->b_paused )
265     {
266         i_duration = i_date - p_input->i_pause_date;
267     }
268     p_input->b_paused = b_paused;
269     p_input->i_pause_date = i_date;
270     aout_unlock_input( p_aout, p_input );
271
272     if( i_duration != 0 )
273     {
274         aout_lock_mixer( p_aout );
275         for( aout_buffer_t *p = p_input->mixer.fifo.p_first; p != NULL; p = p->p_next )
276         {
277             p->i_pts += i_duration;
278         }
279         aout_unlock_mixer( p_aout );
280     }
281 }
282
283 void aout_DecFlush( aout_instance_t *p_aout, aout_input_t *p_input )
284 {
285     aout_lock_input_fifos( p_aout );
286     aout_FifoSet( &p_input->mixer.fifo, 0 );
287     aout_unlock_input_fifos( p_aout );
288 }
289