]> git.sesse.net Git - vlc/blob - src/audio_output/dec.c
aout: only (directly) access output FIFO from output functions
[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( audio_output_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     p_input->b_error = true;
85     p_input->i_pause_date = VLC_TS_INVALID;
86
87     aout_FormatPrepare( p_format );
88
89     memcpy( &p_input->input, p_format,
90             sizeof(audio_sample_format_t) );
91     if( p_replay_gain )
92         p_input->replay_gain = *p_replay_gain;
93
94     /* We can only be called by the decoder, so no need to lock
95      * p_input->lock. */
96     aout_lock( p_aout );
97     assert( p_aout->p_input == NULL );
98     p_aout->p_input = p_input;
99
100     var_Destroy( p_aout, "audio-device" );
101     var_Destroy( p_aout, "audio-channels" );
102
103     /* Recreate the output using the new format. */
104     if( aout_OutputNew( p_aout, p_format ) < 0 )
105 #warning Input without output and mixer = bad idea.
106         goto out;
107
108     assert( p_aout->mixer == NULL );
109     p_aout->mixer = aout_MixerNew( p_aout, &p_aout->mixer_format );
110     if( p_aout->mixer == NULL )
111     {
112         aout_OutputDelete( p_aout );
113 #warning Memory leak.
114         p_input = NULL;
115         goto out;
116     }
117
118     aout_InputNew( p_aout, p_input, p_request_vout );
119 out:
120     aout_unlock( p_aout );
121     return p_input;
122 }
123
124 /*****************************************************************************
125  * aout_DecDelete : delete a decoder
126  *****************************************************************************/
127 void aout_DecDelete( audio_output_t * p_aout, aout_input_t * p_input )
128 {
129     aout_lock( p_aout );
130     /* Remove the input. */
131     assert( p_input == p_aout->p_input ); /* buggy decoder? */
132     p_aout->p_input = NULL;
133     aout_InputDelete( p_aout, p_input );
134
135     aout_OutputDelete( p_aout );
136     aout_MixerDelete( p_aout->mixer );
137     p_aout->mixer = NULL;
138     var_Destroy( p_aout, "audio-device" );
139     var_Destroy( p_aout, "audio-channels" );
140
141     aout_unlock( p_aout );
142     free( p_input );
143 }
144
145
146 /*
147  * Buffer management
148  */
149
150 /*****************************************************************************
151  * aout_DecNewBuffer : ask for a new empty buffer
152  *****************************************************************************/
153 aout_buffer_t * aout_DecNewBuffer( aout_input_t * p_input,
154                                    size_t i_nb_samples )
155 {
156     size_t length = i_nb_samples * p_input->input.i_bytes_per_frame
157                                  / p_input->input.i_frame_length;
158     block_t *block = block_Alloc( length );
159     if( likely(block != NULL) )
160     {
161         block->i_nb_samples = i_nb_samples;
162         block->i_pts = block->i_length = 0;
163     }
164     return block;
165 }
166
167 /*****************************************************************************
168  * aout_DecDeleteBuffer : destroy an undecoded buffer
169  *****************************************************************************/
170 void aout_DecDeleteBuffer( audio_output_t * p_aout, aout_input_t * p_input,
171                            aout_buffer_t * p_buffer )
172 {
173     (void)p_aout; (void)p_input;
174     aout_BufferFree( p_buffer );
175 }
176
177 /*****************************************************************************
178  * aout_DecPlay : filter & mix the decoded buffer
179  *****************************************************************************/
180 int aout_DecPlay( audio_output_t * p_aout, aout_input_t * p_input,
181                   aout_buffer_t * p_buffer, int i_input_rate )
182 {
183     assert( i_input_rate >= INPUT_RATE_DEFAULT / AOUT_MAX_INPUT_RATE &&
184             i_input_rate <= INPUT_RATE_DEFAULT * AOUT_MAX_INPUT_RATE );
185     assert( p_buffer->i_pts > 0 );
186
187     p_buffer->i_length = (mtime_t)p_buffer->i_nb_samples * 1000000
188                                 / p_input->input.i_rate;
189
190     aout_lock( p_aout );
191     if( p_input->b_error )
192     {
193         aout_unlock( p_aout );
194         aout_BufferFree( p_buffer );
195         return -1;
196     }
197
198     aout_InputCheckAndRestart( p_aout, p_input );
199     aout_InputPlay( p_aout, p_input, p_buffer, i_input_rate );
200
201     const float amp = p_aout->mixer_multiplier * p_input->multiplier;
202     while( (p_buffer = aout_OutputSlice( p_aout, &p_input->fifo ) ) != NULL )
203     {
204         aout_MixerRun( p_aout->mixer, p_buffer, amp );
205         aout_OutputPlay( p_aout, p_buffer );
206     }
207     aout_unlock( p_aout );
208     return 0;
209 }
210
211 int aout_DecGetResetLost( audio_output_t *p_aout, aout_input_t *p_input )
212 {
213     int val;
214
215     aout_lock( p_aout );
216     val = p_input->i_buffer_lost;
217     p_input->i_buffer_lost = 0;
218     aout_unlock( p_aout );
219
220     return val;
221 }
222
223 void aout_DecChangePause( audio_output_t *p_aout, aout_input_t *p_input, bool b_paused, mtime_t i_date )
224 {
225     aout_lock( p_aout );
226     assert( p_aout->p_input == p_input );
227
228     aout_OutputPause( p_aout, b_paused, i_date );
229
230     if( b_paused )
231     {
232         p_input->i_pause_date = i_date;
233     }
234     else
235     {
236         assert( p_input->i_pause_date != VLC_TS_INVALID );
237
238         mtime_t i_duration = i_date - p_input->i_pause_date;
239         p_input->i_pause_date = VLC_TS_INVALID;
240         aout_FifoMoveDates( &p_input->fifo, i_duration );
241     }
242     aout_unlock( p_aout );
243 }
244
245 void aout_DecFlush( audio_output_t *p_aout, aout_input_t *p_input )
246 {
247     aout_lock( p_aout );
248     aout_FifoReset( &p_input->fifo );
249     aout_OutputFlush( p_aout, false );
250     aout_unlock( p_aout );
251 }
252
253 bool aout_DecIsEmpty( audio_output_t * p_aout, aout_input_t * p_input )
254 {
255     mtime_t end_date;
256
257     aout_lock( p_aout );
258     end_date = aout_FifoNextStart( &p_input->fifo );
259     aout_unlock( p_aout );
260     return end_date == VLC_TS_INVALID || end_date <= mdate();
261 }