]> git.sesse.net Git - vlc/blob - src/audio_output/input.c
f4416f3251b02e539fbb156264b9808bfcc44cee
[vlc] / src / audio_output / input.c
1 /*****************************************************************************
2  * input.c : internal management of input streams for the audio output
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: input.c,v 1.23 2002/11/25 16:00:26 massiot Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, 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
39 /*****************************************************************************
40  * aout_InputNew : allocate a new input and rework the filter pipeline
41  *****************************************************************************/
42 int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
43 {
44     audio_sample_format_t intermediate_format;
45
46     aout_FormatPrint( p_aout, "input", &p_input->input );
47
48     /* Prepare FIFO. */
49     aout_FifoInit( p_aout, &p_input->fifo, p_aout->mixer.mixer.i_rate );
50     p_input->p_first_byte_to_mix = NULL;
51
52     /* Create filters. */
53     memcpy( &intermediate_format, &p_aout->mixer.mixer,
54             sizeof(audio_sample_format_t) );
55     intermediate_format.i_rate = p_input->input.i_rate;
56     if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters,
57                                      &p_input->i_nb_filters, &p_input->input,
58                                      &intermediate_format ) < 0 )
59     {
60         msg_Err( p_aout, "couldn't set an input pipeline" );
61
62         aout_FifoDestroy( p_aout, &p_input->fifo );
63         p_input->b_error = 1;
64
65         return -1;
66     }
67
68     /* Prepare hints for the buffer allocator. */
69     p_input->input_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
70     p_input->input_alloc.i_bytes_per_sec = -1;
71
72     if ( AOUT_FMT_NON_LINEAR( &p_aout->mixer.mixer ) )
73     {
74         p_input->i_nb_resamplers = 0;
75     }
76     else
77     {
78         /* Create resamplers. */
79         intermediate_format.i_rate = (p_input->input.i_rate
80                                  * (100 + AOUT_MAX_RESAMPLING)) / 100;
81         if ( intermediate_format.i_rate == p_aout->mixer.mixer.i_rate )
82         {
83             /* Just in case... */
84             intermediate_format.i_rate++;
85         }
86         if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_resamplers,
87                                          &p_input->i_nb_resamplers,
88                                          &intermediate_format,
89                                          &p_aout->mixer.mixer ) < 0 )
90         {
91             msg_Err( p_aout, "couldn't set a resampler pipeline" );
92
93             aout_FiltersDestroyPipeline( p_aout, p_input->pp_filters,
94                                          p_input->i_nb_filters );
95             aout_FifoDestroy( p_aout, &p_input->fifo );
96             p_input->b_error = 1;
97
98             return -1;
99         }
100
101         aout_FiltersHintBuffers( p_aout, p_input->pp_resamplers,
102                                  p_input->i_nb_resamplers,
103                                  &p_input->input_alloc );
104
105         /* Setup the initial rate of the resampler */
106         p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
107         p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
108
109     }
110
111     p_input->input_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
112     p_input->input_alloc.i_bytes_per_sec = -1;
113     aout_FiltersHintBuffers( p_aout, p_input->pp_filters,
114                              p_input->i_nb_filters,
115                              &p_input->input_alloc );
116
117     /* i_bytes_per_sec is still == -1 if no filters */
118     p_input->input_alloc.i_bytes_per_sec = __MAX(
119                                     p_input->input_alloc.i_bytes_per_sec,
120                                     (int)(p_input->input.i_bytes_per_frame
121                                      * p_input->input.i_rate
122                                      / p_input->input.i_frame_length) );
123     /* Allocate in the heap, it is more convenient for the decoder. */
124     p_input->input_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
125
126     p_input->b_error = 0;
127
128     return 0;
129 }
130
131 /*****************************************************************************
132  * aout_InputDelete : delete an input
133  *****************************************************************************
134  * This function must be entered with the mixer lock.
135  *****************************************************************************/
136 int aout_InputDelete( aout_instance_t * p_aout, aout_input_t * p_input )
137 {
138     if ( p_input->b_error ) return 0;
139
140     aout_FiltersDestroyPipeline( p_aout, p_input->pp_filters,
141                                  p_input->i_nb_filters );
142     aout_FiltersDestroyPipeline( p_aout, p_input->pp_resamplers,
143                                  p_input->i_nb_resamplers );
144     aout_FifoDestroy( p_aout, &p_input->fifo );
145
146     return 0;
147 }
148
149 /*****************************************************************************
150  * aout_InputPlay : play a buffer
151  *****************************************************************************
152  * This function must be entered with the input lock.
153  *****************************************************************************/
154 int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
155                     aout_buffer_t * p_buffer )
156 {
157     mtime_t start_date;
158
159     /* We don't care if someone changes the start date behind our back after
160      * this. We'll deal with that when pushing the buffer, and compensate
161      * with the next incoming buffer. */
162     vlc_mutex_lock( &p_aout->input_fifos_lock );
163     start_date = aout_FifoNextStart( p_aout, &p_input->fifo );
164     vlc_mutex_unlock( &p_aout->input_fifos_lock );
165
166     if ( start_date != 0 && start_date < mdate() )
167     {
168         /* The decoder is _very_ late. This can only happen if the user
169          * pauses the stream (or if the decoder is buggy, which cannot
170          * happen :). */
171         msg_Warn( p_aout, "computed PTS is out of range ("I64Fd"), "
172                   "clearing out", mdate() - start_date );
173         vlc_mutex_lock( &p_aout->input_fifos_lock );
174         aout_FifoSet( p_aout, &p_input->fifo, 0 );
175         vlc_mutex_unlock( &p_aout->input_fifos_lock );
176         if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
177             msg_Warn( p_aout, "timing screwed, stopping resampling" );
178         p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
179         if ( i_nb_resamplers != 0 )
180         {
181             p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
182             p_input->pp_resamplers[0]->b_reinit = VLC_TRUE;
183         }
184         start_date = 0;
185     }
186
187     if ( p_buffer->start_date < mdate() + AOUT_MIN_PREPARE_TIME )
188     {
189         /* The decoder gives us f*cked up PTS. It's its business, but we
190          * can't present it anyway, so drop the buffer. */
191         msg_Warn( p_aout, "PTS is out of range ("I64Fd"), dropping buffer",
192                   mdate() - p_buffer->start_date );
193         aout_BufferFree( p_buffer );
194
195         return 0;
196     }
197
198     if ( start_date == 0 ) start_date = p_buffer->start_date;
199
200     /* Run pre-filters. */
201     aout_FiltersPlay( p_aout, p_input->pp_filters, p_input->i_nb_filters,
202                       &p_buffer );
203
204     /* Run the resampler if needed.
205      * We first need to calculate the output rate of this resampler. */
206     if ( ( p_input->i_resampling_type == AOUT_RESAMPLING_NONE ) &&
207          ( start_date < p_buffer->start_date - AOUT_PTS_TOLERANCE
208            || start_date > p_buffer->start_date + AOUT_PTS_TOLERANCE ) &&
209          i_nb_resamplers > 0 )
210     {
211         /* Can happen in several circumstances :
212          * 1. A problem at the input (clock drift)
213          * 2. A small pause triggered by the user
214          * 3. Some delay in the output stage, causing a loss of lip
215          *    synchronization
216          * Solution : resample the buffer to avoid a scratch.
217          */
218         mtime_t drift = p_buffer->start_date - start_date;
219
220         p_input->i_resamp_start_date = mdate();
221         p_input->i_resamp_start_drift = (int)drift;
222
223         if ( drift > 0 )
224             p_input->i_resampling_type = AOUT_RESAMPLING_DOWN;
225         else
226             p_input->i_resampling_type = AOUT_RESAMPLING_UP;
227
228         msg_Warn( p_aout, "buffer is "I64Fd" %s, triggering %ssampling",
229                           drift > 0 ? drift : -drift,
230                           drift > 0 ? "in advance" : "late",
231                           drift > 0 ? "down" : "up");
232     }
233
234     if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
235     {
236         /* Resampling has been triggered previously (because of dates
237          * mismatch). We want the resampling to happen progressively so
238          * it isn't too audible to the listener. */
239
240         if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
241         {
242             p_input->pp_resamplers[0]->input.i_rate += 10; /* Hz */
243         }
244         else
245         {
246             p_input->pp_resamplers[0]->input.i_rate -= 10; /* Hz */
247         }
248
249         /* Check if everything is back to normal, in which case we can stop the
250          * resampling */
251         if( p_input->pp_resamplers[0]->input.i_rate ==
252               p_input->input.i_rate )
253         {
254             p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
255             msg_Warn( p_aout, "resampling stopped after "I64Fi" usec",
256                       mdate() - p_input->i_resamp_start_date );
257         }
258         else if( abs( (int)(p_buffer->start_date - start_date) ) <
259                  abs( p_input->i_resamp_start_drift ) / 2 )
260         {
261             /* if we reduced the drift from half, then it is time to switch
262              * back the resampling direction. */
263             if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
264                 p_input->i_resampling_type = AOUT_RESAMPLING_DOWN;
265             else
266                 p_input->i_resampling_type = AOUT_RESAMPLING_UP;
267             p_input->i_resamp_start_drift = 0;
268         }
269         else if( p_input->i_resamp_start_drift &&
270                  ( abs( (int)(p_buffer->start_date - start_date) ) >
271                    abs( p_input->i_resamp_start_drift ) * 3 / 2 ) )
272         {
273             /* If the drift is increasing and not decreasing, than something
274              * is bad. We'd better stop the resampling right now. */
275             msg_Warn( p_aout, "timing screwed, stopping resampling" );
276             p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
277             p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
278         }
279
280     }
281
282     /* Adding the start date will be managed by aout_FifoPush(). */
283     p_buffer->start_date = start_date;
284     p_buffer->end_date = start_date +
285         (p_buffer->end_date - p_buffer->start_date);
286
287     /* Actually run the resampler now. */
288     if ( i_nb_resamplers > 0 && p_aout->mixer.mixer.i_rate !=
289          p_input->pp_resamplers[0]->input.i_rate )
290     {
291         aout_FiltersPlay( p_aout, p_input->pp_resamplers,
292                           p_input->i_nb_resamplers,
293                           &p_buffer );
294     }
295
296     vlc_mutex_lock( &p_aout->input_fifos_lock );
297     aout_FifoPush( p_aout, &p_input->fifo, p_buffer );
298     vlc_mutex_unlock( &p_aout->input_fifos_lock );
299
300     return 0;
301 }