]> git.sesse.net Git - vlc/blob - src/audio_output/input.c
aout: use VLC_TS_INVALID
[vlc] / src / audio_output / input.c
1 /*****************************************************************************
2  * input.c : internal management of input streams for the audio output
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
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <assert.h>
33
34 #include <vlc_common.h>
35
36 #include <stdio.h>
37 #include <string.h>
38 #include <math.h>
39 #include <assert.h>
40
41 #include <vlc_input.h>
42 #include <vlc_vout.h>                  /* for vout_Request */
43 #include <vlc_modules.h>
44
45 #include <vlc_aout.h>
46 #include <vlc_filter.h>
47 #include <libvlc.h>
48
49 #include "aout_internal.h"
50
51 #define AOUT_ASSERT_LOCKED vlc_assert_locked( &p_aout->lock )
52
53 static void inputFailure( audio_output_t *, aout_input_t *, const char * );
54 static void inputDrop( aout_input_t *, aout_buffer_t * );
55 static void inputResamplingStop( aout_input_t *p_input );
56
57 static int VisualizationCallback( vlc_object_t *, char const *,
58                                   vlc_value_t, vlc_value_t, void * );
59 static int EqualizerCallback( vlc_object_t *, char const *,
60                               vlc_value_t, vlc_value_t, void * );
61 static int ReplayGainCallback( vlc_object_t *, char const *,
62                                vlc_value_t, vlc_value_t, void * );
63 static void ReplayGainSelect( audio_output_t *, aout_input_t * );
64
65 static vout_thread_t *RequestVout( void *,
66                                    vout_thread_t *, video_format_t *, bool );
67
68 /*****************************************************************************
69  * aout_InputNew : allocate a new input and rework the filter pipeline
70  *****************************************************************************/
71 int aout_InputNew( audio_output_t * p_aout, aout_input_t * p_input, const aout_request_vout_t *p_request_vout )
72 {
73     audio_sample_format_t chain_input_format;
74     audio_sample_format_t chain_output_format;
75     vlc_value_t val, text;
76     char *psz_filters, *psz_visual, *psz_scaletempo;
77     int i_visual;
78
79     aout_FormatPrint( p_aout, "input", &p_input->input );
80
81     p_input->i_nb_resamplers = p_input->i_nb_filters = 0;
82
83     /* Prepare FIFO. */
84     aout_FifoInit( p_aout, &p_input->fifo, p_aout->mixer_format.i_rate );
85
86     /* */
87     if( p_request_vout )
88     {
89         p_input->request_vout = *p_request_vout;
90     }
91     else
92     {
93         p_input->request_vout.pf_request_vout = RequestVout;
94         p_input->request_vout.p_private = p_aout;
95     }
96
97     /* Prepare format structure */
98     chain_input_format  = p_input->input;
99     chain_output_format = p_aout->mixer_format;
100     chain_output_format.i_rate = p_input->input.i_rate;
101     aout_FormatPrepare( &chain_output_format );
102
103     /* Now add user filters */
104     if( var_Type( p_aout, "visual" ) == 0 )
105     {
106         var_Create( p_aout, "visual", VLC_VAR_STRING | VLC_VAR_HASCHOICE );
107         text.psz_string = _("Visualizations");
108         var_Change( p_aout, "visual", VLC_VAR_SETTEXT, &text, NULL );
109         val.psz_string = (char*)""; text.psz_string = _("Disable");
110         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
111         val.psz_string = (char*)"spectrometer"; text.psz_string = _("Spectrometer");
112         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
113         val.psz_string = (char*)"scope"; text.psz_string = _("Scope");
114         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
115         val.psz_string = (char*)"spectrum"; text.psz_string = _("Spectrum");
116         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
117         val.psz_string = (char*)"vuMeter"; text.psz_string = _("Vu meter");
118         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
119
120         /* Look for goom plugin */
121         if( module_exists( "goom" ) )
122         {
123             val.psz_string = (char*)"goom"; text.psz_string = (char*)"Goom";
124             var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
125         }
126
127         /* Look for libprojectM plugin */
128         if( module_exists( "projectm" ) )
129         {
130             val.psz_string = (char*)"projectm"; text.psz_string = (char*)"projectM";
131             var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
132         }
133
134         if( var_Get( p_aout, "effect-list", &val ) == VLC_SUCCESS )
135         {
136             var_SetString( p_aout, "visual", val.psz_string );
137             free( val.psz_string );
138         }
139         var_AddCallback( p_aout, "visual", VisualizationCallback, NULL );
140     }
141
142     if( var_Type( p_aout, "equalizer" ) == 0 )
143     {
144         module_config_t *p_config;
145         int i;
146
147         p_config = config_FindConfig( VLC_OBJECT(p_aout), "equalizer-preset" );
148         if( p_config && p_config->i_list )
149         {
150                var_Create( p_aout, "equalizer",
151                            VLC_VAR_STRING | VLC_VAR_HASCHOICE );
152             text.psz_string = _("Equalizer");
153             var_Change( p_aout, "equalizer", VLC_VAR_SETTEXT, &text, NULL );
154
155             val.psz_string = (char*)""; text.psz_string = _("Disable");
156             var_Change( p_aout, "equalizer", VLC_VAR_ADDCHOICE, &val, &text );
157
158             for( i = 0; i < p_config->i_list; i++ )
159             {
160                 val.psz_string = (char *)p_config->ppsz_list[i];
161                 text.psz_string = (char *)p_config->ppsz_list_text[i];
162                 var_Change( p_aout, "equalizer", VLC_VAR_ADDCHOICE,
163                             &val, &text );
164             }
165
166             var_AddCallback( p_aout, "equalizer", EqualizerCallback, NULL );
167         }
168     }
169
170     if( var_Type( p_aout, "audio-filter" ) == 0 )
171     {
172         var_Create( p_aout, "audio-filter",
173                     VLC_VAR_STRING | VLC_VAR_DOINHERIT );
174         text.psz_string = _("Audio filters");
175         var_Change( p_aout, "audio-filter", VLC_VAR_SETTEXT, &text, NULL );
176     }
177     if( var_Type( p_aout, "audio-visual" ) == 0 )
178     {
179         var_Create( p_aout, "audio-visual",
180                     VLC_VAR_STRING | VLC_VAR_DOINHERIT );
181         text.psz_string = _("Audio visualizations");
182         var_Change( p_aout, "audio-visual", VLC_VAR_SETTEXT, &text, NULL );
183     }
184
185     if( var_Type( p_aout, "audio-replay-gain-mode" ) == 0 )
186     {
187         module_config_t *p_config;
188         int i;
189
190         p_config = config_FindConfig( VLC_OBJECT(p_aout), "audio-replay-gain-mode" );
191         if( p_config && p_config->i_list )
192         {
193             var_Create( p_aout, "audio-replay-gain-mode",
194                         VLC_VAR_STRING | VLC_VAR_DOINHERIT );
195
196             text.psz_string = _("Replay gain");
197             var_Change( p_aout, "audio-replay-gain-mode", VLC_VAR_SETTEXT, &text, NULL );
198
199             for( i = 0; i < p_config->i_list; i++ )
200             {
201                 val.psz_string = (char *)p_config->ppsz_list[i];
202                 text.psz_string = (char *)p_config->ppsz_list_text[i];
203                 var_Change( p_aout, "audio-replay-gain-mode", VLC_VAR_ADDCHOICE,
204                             &val, &text );
205             }
206
207             var_AddCallback( p_aout, "audio-replay-gain-mode", ReplayGainCallback, NULL );
208         }
209     }
210     if( var_Type( p_aout, "audio-replay-gain-preamp" ) == 0 )
211     {
212         var_Create( p_aout, "audio-replay-gain-preamp",
213                     VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
214     }
215     if( var_Type( p_aout, "audio-replay-gain-default" ) == 0 )
216     {
217         var_Create( p_aout, "audio-replay-gain-default",
218                     VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
219     }
220     if( var_Type( p_aout, "audio-replay-gain-peak-protection" ) == 0 )
221     {
222         var_Create( p_aout, "audio-replay-gain-peak-protection",
223                     VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
224     }
225
226     psz_filters = var_GetString( p_aout, "audio-filter" );
227     psz_visual = var_GetString( p_aout, "audio-visual");
228     psz_scaletempo = var_InheritBool( p_aout, "audio-time-stretch" ) ? strdup( "scaletempo" ) : NULL;
229
230     p_input->b_recycle_vout = psz_visual && *psz_visual;
231
232     /* parse user filter lists */
233     char *const ppsz_array[] = { psz_scaletempo, psz_filters, psz_visual };
234     p_input->p_playback_rate_filter = NULL;
235
236     for( i_visual = 0; i_visual < 3 && !AOUT_FMT_NON_LINEAR(&chain_output_format); i_visual++ )
237     {
238         char *psz_next = NULL;
239         char *psz_parser = ppsz_array[i_visual];
240
241         if( psz_parser == NULL || !*psz_parser )
242             continue;
243
244         while( psz_parser && *psz_parser )
245         {
246             filter_t * p_filter = NULL;
247
248             if( p_input->i_nb_filters >= AOUT_MAX_FILTERS )
249             {
250                 msg_Dbg( p_aout, "max filters reached (%d)", AOUT_MAX_FILTERS );
251                 break;
252             }
253
254             while( *psz_parser == ' ' && *psz_parser == ':' )
255             {
256                 psz_parser++;
257             }
258             if( ( psz_next = strchr( psz_parser , ':'  ) ) )
259             {
260                 *psz_next++ = '\0';
261             }
262             if( *psz_parser =='\0' )
263             {
264                 break;
265             }
266
267             /* Create a VLC object */
268             p_filter = vlc_custom_create( p_aout, sizeof(*p_filter),
269                                           "audio filter" );
270             if( p_filter == NULL )
271             {
272                 msg_Err( p_aout, "cannot add user filter %s (skipped)",
273                          psz_parser );
274                 psz_parser = psz_next;
275                 continue;
276             }
277
278             p_filter->p_owner = malloc( sizeof(*p_filter->p_owner) );
279             p_filter->p_owner->p_aout  = p_aout;
280             p_filter->p_owner->p_input = p_input;
281
282             /* request format */
283             memcpy( &p_filter->fmt_in.audio, &chain_output_format,
284                     sizeof(audio_sample_format_t) );
285             p_filter->fmt_in.i_codec = chain_output_format.i_format;
286             memcpy( &p_filter->fmt_out.audio, &chain_output_format,
287                     sizeof(audio_sample_format_t) );
288             p_filter->fmt_out.i_codec = chain_output_format.i_format;
289             p_filter->pf_audio_buffer_new = aout_FilterBufferNew;
290
291             /* try to find the requested filter */
292             if( i_visual == 2 ) /* this can only be a visualization module */
293             {
294                 p_filter->p_module = module_need( p_filter, "visualization2",
295                                                   psz_parser, true );
296             }
297             else /* this can be a audio filter module as well as a visualization module */
298             {
299                 p_filter->p_module = module_need( p_filter, "audio filter",
300                                               psz_parser, true );
301
302                 if ( p_filter->p_module == NULL )
303                 {
304                     /* if the filter requested a special format, retry */
305                     if ( !( AOUT_FMTS_IDENTICAL( &p_filter->fmt_in.audio,
306                                                  &chain_input_format )
307                             && AOUT_FMTS_IDENTICAL( &p_filter->fmt_out.audio,
308                                                     &chain_output_format ) ) )
309                     {
310                         aout_FormatPrepare( &p_filter->fmt_in.audio );
311                         aout_FormatPrepare( &p_filter->fmt_out.audio );
312                         p_filter->p_module = module_need( p_filter,
313                                                           "audio filter",
314                                                           psz_parser, true );
315                     }
316                     /* try visual filters */
317                     else
318                     {
319                         memcpy( &p_filter->fmt_in.audio, &chain_output_format,
320                                 sizeof(audio_sample_format_t) );
321                         memcpy( &p_filter->fmt_out.audio, &chain_output_format,
322                                 sizeof(audio_sample_format_t) );
323                         p_filter->p_module = module_need( p_filter,
324                                                           "visualization2",
325                                                           psz_parser, true );
326                     }
327                 }
328             }
329
330             /* failure */
331             if ( p_filter->p_module == NULL )
332             {
333                 msg_Err( p_aout, "cannot add user filter %s (skipped)",
334                          psz_parser );
335
336                 free( p_filter->p_owner );
337                 vlc_object_release( p_filter );
338
339                 psz_parser = psz_next;
340                 continue;
341             }
342
343             /* complete the filter chain if necessary */
344             if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters,
345                                              &p_input->i_nb_filters,
346                                              &chain_input_format,
347                                              &p_filter->fmt_in.audio ) < 0 )
348             {
349                 msg_Err( p_aout, "cannot add user filter %s (skipped)",
350                          psz_parser );
351
352                 module_unneed( p_filter, p_filter->p_module );
353                 free( p_filter->p_owner );
354                 vlc_object_release( p_filter );
355
356                 psz_parser = psz_next;
357                 continue;
358             }
359
360             /* success */
361             p_input->pp_filters[p_input->i_nb_filters++] = p_filter;
362             memcpy( &chain_input_format, &p_filter->fmt_out.audio,
363                     sizeof( audio_sample_format_t ) );
364
365             if( i_visual == 0 ) /* scaletempo */
366                 p_input->p_playback_rate_filter = p_filter;
367
368             /* next filter if any */
369             psz_parser = psz_next;
370         }
371     }
372     free( psz_visual );
373     free( psz_filters );
374     free( psz_scaletempo );
375
376     /* complete the filter chain if necessary */
377     if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters,
378                                      &p_input->i_nb_filters,
379                                      &chain_input_format,
380                                      &chain_output_format ) < 0 )
381     {
382         inputFailure( p_aout, p_input, "couldn't set an input pipeline" );
383         return -1;
384     }
385
386     /* Create resamplers. */
387     if ( !AOUT_FMT_NON_LINEAR( &p_aout->mixer_format ) )
388     {
389         chain_output_format.i_rate = (__MAX(p_input->input.i_rate,
390                                             p_aout->mixer_format.i_rate)
391                                  * (100 + AOUT_MAX_RESAMPLING)) / 100;
392         if ( chain_output_format.i_rate == p_aout->mixer_format.i_rate )
393         {
394             /* Just in case... */
395             chain_output_format.i_rate++;
396         }
397         if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_resamplers,
398                                          &p_input->i_nb_resamplers,
399                                          &chain_output_format,
400                                          &p_aout->mixer_format ) < 0 )
401         {
402             inputFailure( p_aout, p_input, "couldn't set a resampler pipeline");
403             return -1;
404         }
405
406         /* Setup the initial rate of the resampler */
407         p_input->pp_resamplers[0]->fmt_in.audio.i_rate = p_input->input.i_rate;
408     }
409     p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
410
411     if( ! p_input->p_playback_rate_filter && p_input->i_nb_resamplers > 0 )
412     {
413         p_input->p_playback_rate_filter = p_input->pp_resamplers[0];
414     }
415
416     ReplayGainSelect( p_aout, p_input );
417
418     /* Success */
419     p_input->b_error = false;
420     p_input->i_last_input_rate = INPUT_RATE_DEFAULT;
421
422     return 0;
423 }
424
425 /*****************************************************************************
426  * aout_InputDelete : delete an input
427  *****************************************************************************
428  * This function must be entered with the mixer lock.
429  *****************************************************************************/
430 int aout_InputDelete( audio_output_t * p_aout, aout_input_t * p_input )
431 {
432     AOUT_ASSERT_LOCKED;
433     if ( p_input->b_error )
434         return 0;
435
436     /* XXX We need to update b_recycle_vout before calling aout_FiltersDestroyPipeline.
437      * FIXME They can be a race condition if audio-visual is updated between
438      * aout_InputDelete and aout_InputNew.
439      */
440     char *psz_visual = var_GetString( p_aout, "audio-visual");
441     p_input->b_recycle_vout = psz_visual && *psz_visual;
442     free( psz_visual );
443
444     aout_FiltersDestroyPipeline( p_input->pp_filters, p_input->i_nb_filters );
445     p_input->i_nb_filters = 0;
446     aout_FiltersDestroyPipeline( p_input->pp_resamplers,
447                                  p_input->i_nb_resamplers );
448     p_input->i_nb_resamplers = 0;
449     aout_FifoDestroy( &p_input->fifo );
450
451     return 0;
452 }
453
454 /*****************************************************************************
455  * aout_InputCheckAndRestart : restart an input
456  *****************************************************************************
457  * This function must be entered with the input and mixer lock.
458  *****************************************************************************/
459 void aout_InputCheckAndRestart( audio_output_t * p_aout, aout_input_t * p_input )
460 {
461     AOUT_ASSERT_LOCKED;
462
463     if( !p_input->b_restart )
464         return;
465
466     /* A little trick to avoid loosing our input fifo and properties */
467
468     aout_fifo_t fifo = p_input->fifo;
469     bool b_paused = p_input->b_paused;
470     mtime_t i_pause_date = p_input->i_pause_date;
471
472     aout_FifoInit( p_aout, &p_input->fifo, p_aout->mixer_format.i_rate );
473
474     aout_InputDelete( p_aout, p_input );
475
476     aout_InputNew( p_aout, p_input, &p_input->request_vout );
477     p_input->fifo = fifo;
478     p_input->b_paused = b_paused;
479     p_input->i_pause_date = i_pause_date;
480
481     p_input->b_restart = false;
482 }
483 /*****************************************************************************
484  * aout_InputPlay : play a buffer
485  *****************************************************************************
486  * This function must be entered with the input lock.
487  *****************************************************************************/
488 /* XXX Do not activate it !! */
489 //#define AOUT_PROCESS_BEFORE_CHEKS
490 void aout_InputPlay( audio_output_t * p_aout, aout_input_t * p_input,
491                      aout_buffer_t * p_buffer, int i_input_rate )
492 {
493     mtime_t start_date;
494     AOUT_ASSERT_LOCKED;
495
496     if( i_input_rate != INPUT_RATE_DEFAULT && p_input->p_playback_rate_filter == NULL )
497     {
498         inputDrop( p_input, p_buffer );
499         return;
500     }
501
502 #ifdef AOUT_PROCESS_BEFORE_CHEKS
503     /* Run pre-filters. */
504     aout_FiltersPlay( p_aout, p_input->pp_filters, p_input->i_nb_filters,
505                       &p_buffer );
506     if( !p_buffer )
507         return;
508
509     /* Actually run the resampler now. */
510     if ( p_input->i_nb_resamplers > 0 )
511     {
512         const mtime_t i_date = p_buffer->i_pts;
513         aout_FiltersPlay( p_aout, p_input->pp_resamplers,
514                           p_input->i_nb_resamplers,
515                           &p_buffer );
516     }
517
518     if( !p_buffer )
519         return;
520     if( p_buffer->i_nb_samples <= 0 )
521     {
522         block_Release( p_buffer );
523         return;
524     }
525 #endif
526
527     /* Handle input rate change, but keep drift correction */
528     if( i_input_rate != p_input->i_last_input_rate )
529     {
530         unsigned int * const pi_rate = &p_input->p_playback_rate_filter->fmt_in.audio.i_rate;
531 #define F(r,ir) ( INPUT_RATE_DEFAULT * (r) / (ir) )
532         const int i_delta = *pi_rate - F(p_input->input.i_rate,p_input->i_last_input_rate);
533         *pi_rate = F(p_input->input.i_rate + i_delta, i_input_rate);
534 #undef F
535         p_input->i_last_input_rate = i_input_rate;
536     }
537
538     mtime_t now = mdate();
539
540     /* We don't care if someone changes the start date behind our back after
541      * this. We'll deal with that when pushing the buffer, and compensate
542      * with the next incoming buffer. */
543     start_date = aout_FifoNextStart( &p_input->fifo );
544
545     if ( start_date != VLC_TS_INVALID && start_date < now )
546     {
547         /* The decoder is _very_ late. This can only happen if the user
548          * pauses the stream (or if the decoder is buggy, which cannot
549          * happen :). */
550         msg_Warn( p_aout, "computed PTS is out of range (%"PRId64"), "
551                   "clearing out", now - start_date );
552         aout_FifoReset( &p_input->fifo );
553         aout_FifoReset( &p_aout->fifo );
554         if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
555             msg_Warn( p_aout, "timing screwed, stopping resampling" );
556         inputResamplingStop( p_input );
557         p_buffer->i_flags |= BLOCK_FLAG_DISCONTINUITY;
558         start_date = VLC_TS_INVALID;
559     }
560
561     if ( p_buffer->i_pts < now + AOUT_MIN_PREPARE_TIME )
562     {
563         /* The decoder gives us f*cked up PTS. It's its business, but we
564          * can't present it anyway, so drop the buffer. */
565         msg_Warn( p_aout, "PTS is out of range (%"PRId64"), dropping buffer",
566                   now - p_buffer->i_pts );
567         inputDrop( p_input, p_buffer );
568         inputResamplingStop( p_input );
569         return;
570     }
571
572     /* If the audio drift is too big then it's not worth trying to resample
573      * the audio. */
574     if( start_date == VLC_TS_INVALID )
575         start_date = p_buffer->i_pts;
576
577     mtime_t drift = start_date - p_buffer->i_pts;
578
579     if( drift < -i_input_rate * 3 * AOUT_MAX_PTS_ADVANCE / INPUT_RATE_DEFAULT )
580     {
581         msg_Warn( p_aout, "buffer way too early (%"PRId64"), clearing queue",
582                   drift );
583         aout_FifoReset( &p_input->fifo );
584         if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
585             msg_Warn( p_aout, "timing screwed, stopping resampling" );
586         inputResamplingStop( p_input );
587         p_buffer->i_flags |= BLOCK_FLAG_DISCONTINUITY;
588         start_date = p_buffer->i_pts;
589         drift = 0;
590     }
591     else
592     if( drift > +i_input_rate * 3 * AOUT_MAX_PTS_DELAY / INPUT_RATE_DEFAULT )
593     {
594         msg_Warn( p_aout, "buffer way too late (%"PRId64"), dropping buffer",
595                   drift );
596         inputDrop( p_input, p_buffer );
597         return;
598     }
599
600 #ifndef AOUT_PROCESS_BEFORE_CHEKS
601     /* Run pre-filters. */
602     aout_FiltersPlay( p_input->pp_filters, p_input->i_nb_filters, &p_buffer );
603     if( !p_buffer )
604         return;
605 #endif
606
607     /* Run the resampler if needed.
608      * We first need to calculate the output rate of this resampler. */
609     if ( ( p_input->i_resampling_type == AOUT_RESAMPLING_NONE ) &&
610          ( drift < -AOUT_MAX_PTS_ADVANCE || drift > +AOUT_MAX_PTS_DELAY ) &&
611          p_input->i_nb_resamplers > 0 )
612     {
613         /* Can happen in several circumstances :
614          * 1. A problem at the input (clock drift)
615          * 2. A small pause triggered by the user
616          * 3. Some delay in the output stage, causing a loss of lip
617          *    synchronization
618          * Solution : resample the buffer to avoid a scratch.
619          */
620         p_input->i_resamp_start_date = now;
621         p_input->i_resamp_start_drift = (int)-drift;
622         p_input->i_resampling_type = (drift < 0) ? AOUT_RESAMPLING_DOWN
623                                                  : AOUT_RESAMPLING_UP;
624         msg_Warn( p_aout, (drift < 0)
625                   ? "buffer too early (%"PRId64"), down-sampling"
626                   : "buffer too late  (%"PRId64"), up-sampling", drift );
627     }
628
629     if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
630     {
631         /* Resampling has been triggered previously (because of dates
632          * mismatch). We want the resampling to happen progressively so
633          * it isn't too audible to the listener. */
634
635         if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
636             p_input->pp_resamplers[0]->fmt_in.audio.i_rate += 2; /* Hz */
637         else
638             p_input->pp_resamplers[0]->fmt_in.audio.i_rate -= 2; /* Hz */
639
640         /* Check if everything is back to normal, in which case we can stop the
641          * resampling */
642         unsigned int i_nominal_rate =
643           (p_input->pp_resamplers[0] == p_input->p_playback_rate_filter)
644           ? INPUT_RATE_DEFAULT * p_input->input.i_rate / i_input_rate
645           : p_input->input.i_rate;
646         if( p_input->pp_resamplers[0]->fmt_in.audio.i_rate == i_nominal_rate )
647         {
648             p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
649             msg_Warn( p_aout, "resampling stopped after %"PRIi64" usec "
650                       "(drift: %"PRIi64")",
651                       now - p_input->i_resamp_start_date,
652                       p_buffer->i_pts - start_date);
653         }
654         else if( abs( (int)(p_buffer->i_pts - start_date) ) <
655                  abs( p_input->i_resamp_start_drift ) / 2 )
656         {
657             /* if we reduced the drift from half, then it is time to switch
658              * back the resampling direction. */
659             if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
660                 p_input->i_resampling_type = AOUT_RESAMPLING_DOWN;
661             else
662                 p_input->i_resampling_type = AOUT_RESAMPLING_UP;
663             p_input->i_resamp_start_drift = 0;
664         }
665         else if( p_input->i_resamp_start_drift &&
666                  ( abs( (int)(p_buffer->i_pts - start_date) ) >
667                    abs( p_input->i_resamp_start_drift ) * 3 / 2 ) )
668         {
669             /* If the drift is increasing and not decreasing, than something
670              * is bad. We'd better stop the resampling right now. */
671             msg_Warn( p_aout, "timing screwed, stopping resampling" );
672             inputResamplingStop( p_input );
673             p_buffer->i_flags |= BLOCK_FLAG_DISCONTINUITY;
674         }
675     }
676
677 #ifndef AOUT_PROCESS_BEFORE_CHEKS
678     /* Actually run the resampler now. */
679     if ( p_input->i_nb_resamplers > 0 )
680     {
681         aout_FiltersPlay( p_input->pp_resamplers, p_input->i_nb_resamplers,
682                           &p_buffer );
683     }
684
685     if( !p_buffer )
686         return;
687     if( p_buffer->i_nb_samples <= 0 )
688     {
689         block_Release( p_buffer );
690         return;
691     }
692 #endif
693
694     /* Adding the start date will be managed by aout_FifoPush(). */
695     p_buffer->i_pts = start_date;
696     aout_FifoPush( &p_input->fifo, p_buffer );
697 }
698
699 /*****************************************************************************
700  * static functions
701  *****************************************************************************/
702
703 static void inputFailure( audio_output_t * p_aout, aout_input_t * p_input,
704                           const char * psz_error_message )
705 {
706     /* error message */
707     msg_Err( p_aout, "%s", psz_error_message );
708
709     /* clean up */
710     aout_FiltersDestroyPipeline( p_input->pp_filters, p_input->i_nb_filters );
711     aout_FiltersDestroyPipeline( p_input->pp_resamplers,
712                                  p_input->i_nb_resamplers );
713     aout_FifoDestroy( &p_input->fifo );
714     var_Destroy( p_aout, "visual" );
715     var_Destroy( p_aout, "equalizer" );
716     var_Destroy( p_aout, "audio-filter" );
717     var_Destroy( p_aout, "audio-visual" );
718
719     var_Destroy( p_aout, "audio-replay-gain-mode" );
720     var_Destroy( p_aout, "audio-replay-gain-default" );
721     var_Destroy( p_aout, "audio-replay-gain-preamp" );
722     var_Destroy( p_aout, "audio-replay-gain-peak-protection" );
723
724     /* error flag */
725     p_input->b_error = 1;
726 }
727
728 static void inputDrop( aout_input_t *p_input, aout_buffer_t *p_buffer )
729 {
730     aout_BufferFree( p_buffer );
731
732     p_input->i_buffer_lost++;
733 }
734
735 static void inputResamplingStop( aout_input_t *p_input )
736 {
737     p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
738     if( p_input->i_nb_resamplers != 0 )
739     {
740         p_input->pp_resamplers[0]->fmt_in.audio.i_rate =
741             ( p_input->pp_resamplers[0] == p_input->p_playback_rate_filter )
742             ? INPUT_RATE_DEFAULT * p_input->input.i_rate / p_input->i_last_input_rate
743             : p_input->input.i_rate;
744     }
745 }
746
747 static vout_thread_t *RequestVout( void *p_private,
748                                    vout_thread_t *p_vout, video_format_t *p_fmt, bool b_recycle )
749 {
750     audio_output_t *p_aout = p_private;
751     VLC_UNUSED(b_recycle);
752     vout_configuration_t cfg = {
753         .vout       = p_vout,
754         .input      = NULL,
755         .change_fmt = true,
756         .fmt        = p_fmt,
757         .dpb_size   = 1,
758     };
759     return vout_Request( p_aout, &cfg );
760 }
761
762 vout_thread_t *aout_filter_RequestVout( filter_t *p_filter,
763                                         vout_thread_t *p_vout, video_format_t *p_fmt )
764 {
765     aout_input_t *p_input = p_filter->p_owner->p_input;
766     aout_request_vout_t *p_request = &p_input->request_vout;
767
768     /* XXX: this only works from audio input */
769     /* If you want to use visualization filters from another place, you will
770      * need to add a new pf_aout_request_vout callback or store a pointer
771      * to aout_request_vout_t inside filter_t (i.e. a level of indirection). */
772
773     return p_request->pf_request_vout( p_request->p_private,
774                                        p_vout, p_fmt, p_input->b_recycle_vout );
775 }
776
777 static int ChangeFiltersString( audio_output_t * p_aout, const char* psz_variable,
778                                  const char *psz_name, bool b_add )
779 {
780     return aout_ChangeFilterString( VLC_OBJECT(p_aout), p_aout,
781                                     psz_variable, psz_name, b_add ) ? 1 : 0;
782 }
783
784 static int VisualizationCallback( vlc_object_t *p_this, char const *psz_cmd,
785                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
786 {
787     audio_output_t *p_aout = (audio_output_t *)p_this;
788     char *psz_mode = newval.psz_string;
789     (void)psz_cmd; (void)oldval; (void)p_data;
790
791     if( !psz_mode || !*psz_mode )
792     {
793         ChangeFiltersString( p_aout, "audio-visual", "goom", false );
794         ChangeFiltersString( p_aout, "audio-visual", "visual", false );
795         ChangeFiltersString( p_aout, "audio-visual", "projectm", false );
796     }
797     else
798     {
799         if( !strcmp( "goom", psz_mode ) )
800         {
801             ChangeFiltersString( p_aout, "audio-visual", "visual", false );
802             ChangeFiltersString( p_aout, "audio-visual", "goom", true );
803             ChangeFiltersString( p_aout, "audio-visual", "projectm", false );
804         }
805         else if( !strcmp( "projectm", psz_mode ) )
806         {
807             ChangeFiltersString( p_aout, "audio-visual", "visual", false );
808             ChangeFiltersString( p_aout, "audio-visual", "goom", false );
809             ChangeFiltersString( p_aout, "audio-visual", "projectm", true );
810         }
811         else
812         {
813             var_Create( p_aout, "effect-list", VLC_VAR_STRING );
814             var_SetString( p_aout, "effect-list", psz_mode );
815
816             ChangeFiltersString( p_aout, "audio-visual", "goom", false );
817             ChangeFiltersString( p_aout, "audio-visual", "visual", true );
818             ChangeFiltersString( p_aout, "audio-visual", "projectm", false );
819         }
820     }
821
822     /* That sucks */
823     AoutInputsMarkToRestart( p_aout );
824
825     return VLC_SUCCESS;
826 }
827
828 static int EqualizerCallback( vlc_object_t *p_this, char const *psz_cmd,
829                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
830 {
831     audio_output_t *p_aout = (audio_output_t *)p_this;
832     char *psz_mode = newval.psz_string;
833     int i_ret;
834     (void)psz_cmd; (void)oldval; (void)p_data;
835
836     if( !psz_mode || !*psz_mode )
837     {
838         i_ret = ChangeFiltersString( p_aout, "audio-filter", "equalizer",
839                                      false );
840     }
841     else
842     {
843         var_Create( p_aout, "equalizer-preset", VLC_VAR_STRING );
844         var_SetString( p_aout, "equalizer-preset", psz_mode );
845         i_ret = ChangeFiltersString( p_aout, "audio-filter", "equalizer",
846                                      true );
847     }
848
849     /* That sucks */
850     if( i_ret == 1 )
851         AoutInputsMarkToRestart( p_aout );
852     return VLC_SUCCESS;
853 }
854
855 static int ReplayGainCallback( vlc_object_t *p_this, char const *psz_cmd,
856                                vlc_value_t oldval, vlc_value_t newval, void *p_data )
857 {
858     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
859     VLC_UNUSED(newval); VLC_UNUSED(p_data);
860     audio_output_t *p_aout = (audio_output_t *)p_this;
861
862     aout_lock( p_aout );
863     if( p_aout->p_input != NULL )
864         ReplayGainSelect( p_aout, p_aout->p_input );
865     aout_unlock( p_aout );
866
867     return VLC_SUCCESS;
868 }
869
870 static void ReplayGainSelect( audio_output_t *p_aout, aout_input_t *p_input )
871 {
872     char *psz_replay_gain = var_GetNonEmptyString( p_aout,
873                                                    "audio-replay-gain-mode" );
874     int i_mode;
875     int i_use;
876     float f_gain;
877
878     p_input->multiplier = 1.0;
879
880     if( !psz_replay_gain )
881         return;
882
883     /* Find select mode */
884     if( !strcmp( psz_replay_gain, "track" ) )
885         i_mode = AUDIO_REPLAY_GAIN_TRACK;
886     else if( !strcmp( psz_replay_gain, "album" ) )
887         i_mode = AUDIO_REPLAY_GAIN_ALBUM;
888     else
889         i_mode = AUDIO_REPLAY_GAIN_MAX;
890
891     /* If the select mode is not available, prefer the other one */
892     i_use = i_mode;
893     if( i_use != AUDIO_REPLAY_GAIN_MAX && !p_input->replay_gain.pb_gain[i_use] )
894     {
895         for( i_use = 0; i_use < AUDIO_REPLAY_GAIN_MAX; i_use++ )
896         {
897             if( p_input->replay_gain.pb_gain[i_use] )
898                 break;
899         }
900     }
901
902     /* */
903     if( i_use != AUDIO_REPLAY_GAIN_MAX )
904         f_gain = p_input->replay_gain.pf_gain[i_use] + var_GetFloat( p_aout, "audio-replay-gain-preamp" );
905     else if( i_mode != AUDIO_REPLAY_GAIN_MAX )
906         f_gain = var_GetFloat( p_aout, "audio-replay-gain-default" );
907     else
908         f_gain = 0.0;
909     p_input->multiplier = pow( 10.0, f_gain / 20.0 );
910
911     /* */
912     if( p_input->replay_gain.pb_peak[i_use] &&
913         var_GetBool( p_aout, "audio-replay-gain-peak-protection" ) &&
914         p_input->replay_gain.pf_peak[i_use] * p_input->multiplier > 1.0 )
915     {
916         p_input->multiplier = 1.0f / p_input->replay_gain.pf_peak[i_use];
917     }
918
919     free( psz_replay_gain );
920 }