]> git.sesse.net Git - vlc/blob - src/audio_output/input.c
70c581a7beed83f19e7ae28aa9ed433b77b0a0b4
[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     mtime_t i_pause_date = p_input->i_pause_date;
470
471     aout_FifoInit( p_aout, &p_input->fifo, p_aout->mixer_format.i_rate );
472
473     aout_InputDelete( p_aout, p_input );
474
475     aout_InputNew( p_aout, p_input, &p_input->request_vout );
476     p_input->fifo = fifo;
477     p_input->i_pause_date = i_pause_date;
478
479     p_input->b_restart = false;
480 }
481 /*****************************************************************************
482  * aout_InputPlay : play a buffer
483  *****************************************************************************
484  * This function must be entered with the input lock.
485  *****************************************************************************/
486 /* XXX Do not activate it !! */
487 //#define AOUT_PROCESS_BEFORE_CHEKS
488 void aout_InputPlay( audio_output_t * p_aout, aout_input_t * p_input,
489                      aout_buffer_t * p_buffer, int i_input_rate )
490 {
491     mtime_t start_date;
492     AOUT_ASSERT_LOCKED;
493
494     if( i_input_rate != INPUT_RATE_DEFAULT && p_input->p_playback_rate_filter == NULL )
495     {
496         inputDrop( p_input, p_buffer );
497         return;
498     }
499
500 #ifdef AOUT_PROCESS_BEFORE_CHEKS
501     /* Run pre-filters. */
502     aout_FiltersPlay( p_aout, p_input->pp_filters, p_input->i_nb_filters,
503                       &p_buffer );
504     if( !p_buffer )
505         return;
506
507     /* Actually run the resampler now. */
508     if ( p_input->i_nb_resamplers > 0 )
509     {
510         const mtime_t i_date = p_buffer->i_pts;
511         aout_FiltersPlay( p_aout, p_input->pp_resamplers,
512                           p_input->i_nb_resamplers,
513                           &p_buffer );
514     }
515
516     if( !p_buffer )
517         return;
518     if( p_buffer->i_nb_samples <= 0 )
519     {
520         block_Release( p_buffer );
521         return;
522     }
523 #endif
524
525     /* Handle input rate change, but keep drift correction */
526     if( i_input_rate != p_input->i_last_input_rate )
527     {
528         unsigned int * const pi_rate = &p_input->p_playback_rate_filter->fmt_in.audio.i_rate;
529 #define F(r,ir) ( INPUT_RATE_DEFAULT * (r) / (ir) )
530         const int i_delta = *pi_rate - F(p_input->input.i_rate,p_input->i_last_input_rate);
531         *pi_rate = F(p_input->input.i_rate + i_delta, i_input_rate);
532 #undef F
533         p_input->i_last_input_rate = i_input_rate;
534     }
535
536     mtime_t now = mdate();
537
538     /* We don't care if someone changes the start date behind our back after
539      * this. We'll deal with that when pushing the buffer, and compensate
540      * with the next incoming buffer. */
541     start_date = aout_FifoNextStart( &p_input->fifo );
542
543     if ( start_date != VLC_TS_INVALID && start_date < now )
544     {
545         /* The decoder is _very_ late. This can only happen if the user
546          * pauses the stream (or if the decoder is buggy, which cannot
547          * happen :). */
548         msg_Warn( p_aout, "computed PTS is out of range (%"PRId64"), "
549                   "clearing out", now - start_date );
550         aout_FifoReset( &p_input->fifo );
551         aout_FifoReset( &p_aout->fifo );
552         if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
553             msg_Warn( p_aout, "timing screwed, stopping resampling" );
554         inputResamplingStop( p_input );
555         p_buffer->i_flags |= BLOCK_FLAG_DISCONTINUITY;
556         start_date = VLC_TS_INVALID;
557     }
558
559     if ( p_buffer->i_pts < now + AOUT_MIN_PREPARE_TIME )
560     {
561         /* The decoder gives us f*cked up PTS. It's its business, but we
562          * can't present it anyway, so drop the buffer. */
563         msg_Warn( p_aout, "PTS is out of range (%"PRId64"), dropping buffer",
564                   now - p_buffer->i_pts );
565         inputDrop( p_input, p_buffer );
566         inputResamplingStop( p_input );
567         return;
568     }
569
570     /* If the audio drift is too big then it's not worth trying to resample
571      * the audio. */
572     if( start_date == VLC_TS_INVALID )
573         start_date = p_buffer->i_pts;
574
575     mtime_t drift = start_date - p_buffer->i_pts;
576
577     if( drift < -i_input_rate * 3 * AOUT_MAX_PTS_ADVANCE / INPUT_RATE_DEFAULT )
578     {
579         msg_Warn( p_aout, "buffer way too early (%"PRId64"), clearing queue",
580                   drift );
581         aout_FifoReset( &p_input->fifo );
582         aout_FifoReset( &p_aout->fifo );
583         if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
584             msg_Warn( p_aout, "timing screwed, stopping resampling" );
585         inputResamplingStop( p_input );
586         p_buffer->i_flags |= BLOCK_FLAG_DISCONTINUITY;
587         start_date = p_buffer->i_pts;
588         drift = 0;
589     }
590     else
591     if( drift > +i_input_rate * 3 * AOUT_MAX_PTS_DELAY / INPUT_RATE_DEFAULT )
592     {
593         msg_Warn( p_aout, "buffer way too late (%"PRId64"), dropping buffer",
594                   drift );
595         inputDrop( p_input, p_buffer );
596         return;
597     }
598
599 #ifndef AOUT_PROCESS_BEFORE_CHEKS
600     /* Run pre-filters. */
601     aout_FiltersPlay( p_input->pp_filters, p_input->i_nb_filters, &p_buffer );
602     if( !p_buffer )
603         return;
604 #endif
605
606     /* Run the resampler if needed.
607      * We first need to calculate the output rate of this resampler. */
608     if ( ( p_input->i_resampling_type == AOUT_RESAMPLING_NONE ) &&
609          ( drift < -AOUT_MAX_PTS_ADVANCE || drift > +AOUT_MAX_PTS_DELAY ) &&
610          p_input->i_nb_resamplers > 0 )
611     {
612         /* Can happen in several circumstances :
613          * 1. A problem at the input (clock drift)
614          * 2. A small pause triggered by the user
615          * 3. Some delay in the output stage, causing a loss of lip
616          *    synchronization
617          * Solution : resample the buffer to avoid a scratch.
618          */
619         p_input->i_resamp_start_date = now;
620         p_input->i_resamp_start_drift = (int)-drift;
621         p_input->i_resampling_type = (drift < 0) ? AOUT_RESAMPLING_DOWN
622                                                  : AOUT_RESAMPLING_UP;
623         msg_Warn( p_aout, (drift < 0)
624                   ? "buffer too early (%"PRId64"), down-sampling"
625                   : "buffer too late  (%"PRId64"), up-sampling", drift );
626     }
627
628     if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
629     {
630         /* Resampling has been triggered previously (because of dates
631          * mismatch). We want the resampling to happen progressively so
632          * it isn't too audible to the listener. */
633
634         if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
635             p_input->pp_resamplers[0]->fmt_in.audio.i_rate += 2; /* Hz */
636         else
637             p_input->pp_resamplers[0]->fmt_in.audio.i_rate -= 2; /* Hz */
638
639         /* Check if everything is back to normal, in which case we can stop the
640          * resampling */
641         unsigned int i_nominal_rate =
642           (p_input->pp_resamplers[0] == p_input->p_playback_rate_filter)
643           ? INPUT_RATE_DEFAULT * p_input->input.i_rate / i_input_rate
644           : p_input->input.i_rate;
645         if( p_input->pp_resamplers[0]->fmt_in.audio.i_rate == i_nominal_rate )
646         {
647             p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
648             msg_Warn( p_aout, "resampling stopped after %"PRIi64" usec "
649                       "(drift: %"PRIi64")",
650                       now - p_input->i_resamp_start_date,
651                       p_buffer->i_pts - start_date);
652         }
653         else if( abs( (int)(p_buffer->i_pts - start_date) ) <
654                  abs( p_input->i_resamp_start_drift ) / 2 )
655         {
656             /* if we reduced the drift from half, then it is time to switch
657              * back the resampling direction. */
658             if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
659                 p_input->i_resampling_type = AOUT_RESAMPLING_DOWN;
660             else
661                 p_input->i_resampling_type = AOUT_RESAMPLING_UP;
662             p_input->i_resamp_start_drift = 0;
663         }
664         else if( p_input->i_resamp_start_drift &&
665                  ( abs( (int)(p_buffer->i_pts - start_date) ) >
666                    abs( p_input->i_resamp_start_drift ) * 3 / 2 ) )
667         {
668             /* If the drift is increasing and not decreasing, than something
669              * is bad. We'd better stop the resampling right now. */
670             msg_Warn( p_aout, "timing screwed, stopping resampling" );
671             inputResamplingStop( p_input );
672             p_buffer->i_flags |= BLOCK_FLAG_DISCONTINUITY;
673         }
674     }
675
676 #ifndef AOUT_PROCESS_BEFORE_CHEKS
677     /* Actually run the resampler now. */
678     if ( p_input->i_nb_resamplers > 0 )
679     {
680         aout_FiltersPlay( p_input->pp_resamplers, p_input->i_nb_resamplers,
681                           &p_buffer );
682     }
683
684     if( !p_buffer )
685         return;
686     if( p_buffer->i_nb_samples <= 0 )
687     {
688         block_Release( p_buffer );
689         return;
690     }
691 #endif
692
693     /* Adding the start date will be managed by aout_FifoPush(). */
694     p_buffer->i_pts = start_date;
695     aout_FifoPush( &p_input->fifo, p_buffer );
696 }
697
698 /*****************************************************************************
699  * static functions
700  *****************************************************************************/
701
702 static void inputFailure( audio_output_t * p_aout, aout_input_t * p_input,
703                           const char * psz_error_message )
704 {
705     /* error message */
706     msg_Err( p_aout, "%s", psz_error_message );
707
708     /* clean up */
709     aout_FiltersDestroyPipeline( p_input->pp_filters, p_input->i_nb_filters );
710     aout_FiltersDestroyPipeline( p_input->pp_resamplers,
711                                  p_input->i_nb_resamplers );
712     aout_FifoDestroy( &p_input->fifo );
713     var_Destroy( p_aout, "visual" );
714     var_Destroy( p_aout, "equalizer" );
715     var_Destroy( p_aout, "audio-filter" );
716     var_Destroy( p_aout, "audio-visual" );
717
718     var_Destroy( p_aout, "audio-replay-gain-mode" );
719     var_Destroy( p_aout, "audio-replay-gain-default" );
720     var_Destroy( p_aout, "audio-replay-gain-preamp" );
721     var_Destroy( p_aout, "audio-replay-gain-peak-protection" );
722
723     /* error flag */
724     p_input->b_error = 1;
725 }
726
727 static void inputDrop( aout_input_t *p_input, aout_buffer_t *p_buffer )
728 {
729     aout_BufferFree( p_buffer );
730
731     p_input->i_buffer_lost++;
732 }
733
734 static void inputResamplingStop( aout_input_t *p_input )
735 {
736     p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
737     if( p_input->i_nb_resamplers != 0 )
738     {
739         p_input->pp_resamplers[0]->fmt_in.audio.i_rate =
740             ( p_input->pp_resamplers[0] == p_input->p_playback_rate_filter )
741             ? INPUT_RATE_DEFAULT * p_input->input.i_rate / p_input->i_last_input_rate
742             : p_input->input.i_rate;
743     }
744 }
745
746 static vout_thread_t *RequestVout( void *p_private,
747                                    vout_thread_t *p_vout, video_format_t *p_fmt, bool b_recycle )
748 {
749     audio_output_t *p_aout = p_private;
750     VLC_UNUSED(b_recycle);
751     vout_configuration_t cfg = {
752         .vout       = p_vout,
753         .input      = NULL,
754         .change_fmt = true,
755         .fmt        = p_fmt,
756         .dpb_size   = 1,
757     };
758     return vout_Request( p_aout, &cfg );
759 }
760
761 vout_thread_t *aout_filter_RequestVout( filter_t *p_filter,
762                                         vout_thread_t *p_vout, video_format_t *p_fmt )
763 {
764     aout_input_t *p_input = p_filter->p_owner->p_input;
765     aout_request_vout_t *p_request = &p_input->request_vout;
766
767     /* XXX: this only works from audio input */
768     /* If you want to use visualization filters from another place, you will
769      * need to add a new pf_aout_request_vout callback or store a pointer
770      * to aout_request_vout_t inside filter_t (i.e. a level of indirection). */
771
772     return p_request->pf_request_vout( p_request->p_private,
773                                        p_vout, p_fmt, p_input->b_recycle_vout );
774 }
775
776 static int ChangeFiltersString( audio_output_t * p_aout, const char* psz_variable,
777                                  const char *psz_name, bool b_add )
778 {
779     return aout_ChangeFilterString( VLC_OBJECT(p_aout), p_aout,
780                                     psz_variable, psz_name, b_add ) ? 1 : 0;
781 }
782
783 static int VisualizationCallback( vlc_object_t *p_this, char const *psz_cmd,
784                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
785 {
786     audio_output_t *p_aout = (audio_output_t *)p_this;
787     char *psz_mode = newval.psz_string;
788     (void)psz_cmd; (void)oldval; (void)p_data;
789
790     if( !psz_mode || !*psz_mode )
791     {
792         ChangeFiltersString( p_aout, "audio-visual", "goom", false );
793         ChangeFiltersString( p_aout, "audio-visual", "visual", false );
794         ChangeFiltersString( p_aout, "audio-visual", "projectm", false );
795     }
796     else
797     {
798         if( !strcmp( "goom", psz_mode ) )
799         {
800             ChangeFiltersString( p_aout, "audio-visual", "visual", false );
801             ChangeFiltersString( p_aout, "audio-visual", "goom", true );
802             ChangeFiltersString( p_aout, "audio-visual", "projectm", false );
803         }
804         else if( !strcmp( "projectm", psz_mode ) )
805         {
806             ChangeFiltersString( p_aout, "audio-visual", "visual", false );
807             ChangeFiltersString( p_aout, "audio-visual", "goom", false );
808             ChangeFiltersString( p_aout, "audio-visual", "projectm", true );
809         }
810         else
811         {
812             var_Create( p_aout, "effect-list", VLC_VAR_STRING );
813             var_SetString( p_aout, "effect-list", psz_mode );
814
815             ChangeFiltersString( p_aout, "audio-visual", "goom", false );
816             ChangeFiltersString( p_aout, "audio-visual", "visual", true );
817             ChangeFiltersString( p_aout, "audio-visual", "projectm", false );
818         }
819     }
820
821     /* That sucks */
822     AoutInputsMarkToRestart( p_aout );
823
824     return VLC_SUCCESS;
825 }
826
827 static int EqualizerCallback( vlc_object_t *p_this, char const *psz_cmd,
828                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
829 {
830     audio_output_t *p_aout = (audio_output_t *)p_this;
831     char *psz_mode = newval.psz_string;
832     int i_ret;
833     (void)psz_cmd; (void)oldval; (void)p_data;
834
835     if( !psz_mode || !*psz_mode )
836     {
837         i_ret = ChangeFiltersString( p_aout, "audio-filter", "equalizer",
838                                      false );
839     }
840     else
841     {
842         var_Create( p_aout, "equalizer-preset", VLC_VAR_STRING );
843         var_SetString( p_aout, "equalizer-preset", psz_mode );
844         i_ret = ChangeFiltersString( p_aout, "audio-filter", "equalizer",
845                                      true );
846     }
847
848     /* That sucks */
849     if( i_ret == 1 )
850         AoutInputsMarkToRestart( p_aout );
851     return VLC_SUCCESS;
852 }
853
854 static int ReplayGainCallback( vlc_object_t *p_this, char const *psz_cmd,
855                                vlc_value_t oldval, vlc_value_t newval, void *p_data )
856 {
857     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
858     VLC_UNUSED(newval); VLC_UNUSED(p_data);
859     audio_output_t *p_aout = (audio_output_t *)p_this;
860
861     aout_lock( p_aout );
862     if( p_aout->p_input != NULL )
863         ReplayGainSelect( p_aout, p_aout->p_input );
864     aout_unlock( p_aout );
865
866     return VLC_SUCCESS;
867 }
868
869 static void ReplayGainSelect( audio_output_t *p_aout, aout_input_t *p_input )
870 {
871     char *psz_replay_gain = var_GetNonEmptyString( p_aout,
872                                                    "audio-replay-gain-mode" );
873     int i_mode;
874     int i_use;
875     float f_gain;
876
877     p_input->multiplier = 1.0;
878
879     if( !psz_replay_gain )
880         return;
881
882     /* Find select mode */
883     if( !strcmp( psz_replay_gain, "track" ) )
884         i_mode = AUDIO_REPLAY_GAIN_TRACK;
885     else if( !strcmp( psz_replay_gain, "album" ) )
886         i_mode = AUDIO_REPLAY_GAIN_ALBUM;
887     else
888         i_mode = AUDIO_REPLAY_GAIN_MAX;
889
890     /* If the select mode is not available, prefer the other one */
891     i_use = i_mode;
892     if( i_use != AUDIO_REPLAY_GAIN_MAX && !p_input->replay_gain.pb_gain[i_use] )
893     {
894         for( i_use = 0; i_use < AUDIO_REPLAY_GAIN_MAX; i_use++ )
895         {
896             if( p_input->replay_gain.pb_gain[i_use] )
897                 break;
898         }
899     }
900
901     /* */
902     if( i_use != AUDIO_REPLAY_GAIN_MAX )
903         f_gain = p_input->replay_gain.pf_gain[i_use] + var_GetFloat( p_aout, "audio-replay-gain-preamp" );
904     else if( i_mode != AUDIO_REPLAY_GAIN_MAX )
905         f_gain = var_GetFloat( p_aout, "audio-replay-gain-default" );
906     else
907         f_gain = 0.0;
908     p_input->multiplier = pow( 10.0, f_gain / 20.0 );
909
910     /* */
911     if( p_input->replay_gain.pb_peak[i_use] &&
912         var_GetBool( p_aout, "audio-replay-gain-peak-protection" ) &&
913         p_input->replay_gain.pf_peak[i_use] * p_input->multiplier > 1.0 )
914     {
915         p_input->multiplier = 1.0f / p_input->replay_gain.pf_peak[i_use];
916     }
917
918     free( psz_replay_gain );
919 }