]> git.sesse.net Git - vlc/blob - src/audio_output/input.c
* src/audio_output/input.c: made the resampling just a bit quicker (trying to reach...
[vlc] / src / audio_output / input.c
1 /*****************************************************************************
2  * input.c : internal management of input streams for the audio output
3  *****************************************************************************
4  * Copyright (C) 2002-2004 VideoLAN
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., 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 #include <vlc/input.h>                 /* for input_thread_t and i_pts_delay */
32
33 #ifdef HAVE_ALLOCA_H
34 #   include <alloca.h>
35 #endif
36
37 #include "audio_output.h"
38 #include "aout_internal.h"
39
40 static int VisualizationCallback( vlc_object_t *, char const *,
41                                   vlc_value_t, vlc_value_t, void * );
42 static int EqualizerCallback( vlc_object_t *, char const *,
43                               vlc_value_t, vlc_value_t, void * );
44 static aout_filter_t * allocateUserChannelMixer( aout_instance_t *,
45                                                  audio_sample_format_t *,
46                                                  audio_sample_format_t * );
47
48 /*****************************************************************************
49  * aout_InputNew : allocate a new input and rework the filter pipeline
50  *****************************************************************************/
51 int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
52 {
53     audio_sample_format_t user_filter_format;
54     audio_sample_format_t intermediate_format;/* input of resampler */
55     vlc_value_t val, text;
56     char * psz_filters;
57     aout_filter_t * p_user_channel_mixer;
58
59     aout_FormatPrint( p_aout, "input", &p_input->input );
60
61     /* Prepare FIFO. */
62     aout_FifoInit( p_aout, &p_input->fifo, p_aout->mixer.mixer.i_rate );
63     p_input->p_first_byte_to_mix = NULL;
64
65     /* Prepare format structure */
66     memcpy( &intermediate_format, &p_aout->mixer.mixer,
67             sizeof(audio_sample_format_t) );
68     intermediate_format.i_rate = p_input->input.i_rate;
69
70     /* Try to use the channel mixer chosen by the user */
71     memcpy ( &user_filter_format, &intermediate_format,
72              sizeof(audio_sample_format_t) );
73     user_filter_format.i_physical_channels = p_input->input.i_physical_channels;
74     user_filter_format.i_original_channels = p_input->input.i_original_channels;
75     user_filter_format.i_bytes_per_frame = user_filter_format.i_bytes_per_frame
76                               * aout_FormatNbChannels( &user_filter_format )
77                               / aout_FormatNbChannels( &intermediate_format );
78     p_user_channel_mixer = allocateUserChannelMixer( p_aout, &user_filter_format,
79                                                    &intermediate_format );
80     /* If it failed, let the main pipeline do channel mixing */
81     if ( ! p_user_channel_mixer )
82     {
83         memcpy ( &user_filter_format, &intermediate_format,
84                  sizeof(audio_sample_format_t) );
85     }
86
87     /* Create filters. */
88     if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_filters,
89                                      &p_input->i_nb_filters,
90                                      &p_input->input,
91                                      &user_filter_format
92                                      ) < 0 )
93     {
94         msg_Err( p_aout, "couldn't set an input pipeline" );
95
96         aout_FifoDestroy( p_aout, &p_input->fifo );
97         p_input->b_error = 1;
98         return -1;
99     }
100
101     /* Now add user filters */
102     if( var_Type( p_aout, "visual" ) == 0 )
103     {
104         module_t *p_module;
105         var_Create( p_aout, "visual", VLC_VAR_STRING | VLC_VAR_HASCHOICE );
106         text.psz_string = _("Visualizations");
107         var_Change( p_aout, "visual", VLC_VAR_SETTEXT, &text, NULL );
108         val.psz_string = ""; text.psz_string = _("Disable");
109         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
110         val.psz_string = "random"; text.psz_string = _("Random");
111         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
112         val.psz_string = "scope"; text.psz_string = _("Scope");
113         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
114         val.psz_string = "spectrum"; text.psz_string = _("Spectrum");
115         var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
116
117         /* Look for goom plugin */
118         p_module = config_FindModule( VLC_OBJECT(p_aout), "goom" );
119         if( p_module )
120         {
121             val.psz_string = "goom"; text.psz_string = "Goom";
122             var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
123         }
124
125         /* Look for galaktos plugin */
126         p_module = config_FindModule( VLC_OBJECT(p_aout), "galaktos" );
127         if( p_module )
128         {
129             val.psz_string = "galaktos"; text.psz_string = "GaLaktos";
130             var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text );
131         }
132
133         if( var_Get( p_aout, "effect-list", &val ) == VLC_SUCCESS )
134         {
135             var_Set( p_aout, "visual", val );
136             if( val.psz_string ) free( val.psz_string );
137         }
138         var_AddCallback( p_aout, "visual", VisualizationCallback, NULL );
139     }
140
141     if( var_Type( p_aout, "equalizer" ) == 0 )
142     {
143         module_config_t *p_config;
144         int i;
145
146         p_config = config_FindConfig( VLC_OBJECT(p_aout), "equalizer-preset" );
147         if( p_config && p_config->i_list )
148         {
149             var_Create( p_aout, "equalizer",
150                         VLC_VAR_STRING | VLC_VAR_HASCHOICE );
151             text.psz_string = _("Equalizer");
152             var_Change( p_aout, "equalizer", VLC_VAR_SETTEXT, &text, NULL );
153
154             val.psz_string = ""; text.psz_string = _("Disable");
155             var_Change( p_aout, "equalizer", VLC_VAR_ADDCHOICE, &val, &text );
156
157             for( i = 0; i < p_config->i_list; i++ )
158             {
159                 val.psz_string = p_config->ppsz_list[i];
160                 text.psz_string = p_config->ppsz_list_text[i];
161                 var_Change( p_aout, "equalizer", VLC_VAR_ADDCHOICE,
162                             &val, &text );
163             }
164
165             var_AddCallback( p_aout, "equalizer", EqualizerCallback, NULL );
166         }
167     }
168
169     if( var_Type( p_aout, "audio-filter" ) == 0 )
170     {
171         var_Create( p_aout, "audio-filter",
172                     VLC_VAR_STRING | VLC_VAR_DOINHERIT );
173         text.psz_string = _("Audio filters");
174         var_Change( p_aout, "audio-filter", VLC_VAR_SETTEXT, &text, NULL );
175     }
176
177     var_Get( p_aout, "audio-filter", &val );
178     psz_filters = val.psz_string;
179     if( psz_filters && *psz_filters )
180     {
181         char *psz_parser = psz_filters;
182         char *psz_next;
183
184         while( psz_parser && *psz_parser )
185         {
186             aout_filter_t * p_filter;
187
188             if( p_input->i_nb_filters >= AOUT_MAX_FILTERS )
189             {
190                 msg_Dbg( p_aout, "max filter reached (%d)", AOUT_MAX_FILTERS );
191                 break;
192             }
193
194             while( *psz_parser == ' ' && *psz_parser == ',' )
195             {
196                 psz_parser++;
197             }
198             if( ( psz_next = strchr( psz_parser , ','  ) ) )
199             {
200                 *psz_next++ = '\0';
201             }
202             if( *psz_parser =='\0' )
203             {
204                 break;
205             }
206
207             msg_Dbg( p_aout, "user filter \"%s\"", psz_parser );
208
209             /* Create a VLC object */
210             p_filter = vlc_object_create( p_aout, sizeof(aout_filter_t) );
211             if( p_filter == NULL )
212             {
213                 msg_Err( p_aout, "cannot add user filter %s (skipped)",
214                          psz_parser );
215                 psz_parser = psz_next;
216                 continue;
217             }
218
219             vlc_object_attach( p_filter , p_aout );
220             memcpy( &p_filter->input, &user_filter_format,
221                     sizeof(audio_sample_format_t) );
222             memcpy( &p_filter->output, &user_filter_format,
223                     sizeof(audio_sample_format_t) );
224
225             p_filter->p_module =
226                 module_Need( p_filter,"audio filter", psz_parser, VLC_TRUE );
227
228             if( p_filter->p_module== NULL )
229             {
230                 msg_Err( p_aout, "cannot add user filter %s (skipped)",
231                          psz_parser );
232
233                 vlc_object_detach( p_filter );
234                 vlc_object_destroy( p_filter );
235                 psz_parser = psz_next;
236                 continue;
237
238             }
239             p_filter->b_continuity = VLC_FALSE;
240
241             p_input->pp_filters[p_input->i_nb_filters++] = p_filter;
242
243             /* next filter if any */
244             psz_parser = psz_next;
245         }
246     }
247     if( psz_filters ) free( psz_filters );
248
249     /* Attach the user channel mixer */
250     if ( p_user_channel_mixer )
251     {
252         p_input->pp_filters[p_input->i_nb_filters++] = p_user_channel_mixer;
253     }
254
255     /* Prepare hints for the buffer allocator. */
256     p_input->input_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
257     p_input->input_alloc.i_bytes_per_sec = -1;
258
259     if ( AOUT_FMT_NON_LINEAR( &p_aout->mixer.mixer ) )
260     {
261         p_input->i_nb_resamplers = 0;
262     }
263     else
264     {
265         /* Create resamplers. */
266         intermediate_format.i_rate = (__MAX(p_input->input.i_rate,
267                                             p_aout->mixer.mixer.i_rate)
268                                  * (100 + AOUT_MAX_RESAMPLING)) / 100;
269         if ( intermediate_format.i_rate == p_aout->mixer.mixer.i_rate )
270         {
271             /* Just in case... */
272             intermediate_format.i_rate++;
273         }
274         if ( aout_FiltersCreatePipeline( p_aout, p_input->pp_resamplers,
275                                          &p_input->i_nb_resamplers,
276                                          &intermediate_format,
277                                          &p_aout->mixer.mixer ) < 0 )
278         {
279             msg_Err( p_aout, "couldn't set a resampler pipeline" );
280
281             aout_FiltersDestroyPipeline( p_aout, p_input->pp_filters,
282                                          p_input->i_nb_filters );
283             aout_FifoDestroy( p_aout, &p_input->fifo );
284             var_Destroy( p_aout, "visual" );
285             p_input->b_error = 1;
286
287             return -1;
288         }
289
290         aout_FiltersHintBuffers( p_aout, p_input->pp_resamplers,
291                                  p_input->i_nb_resamplers,
292                                  &p_input->input_alloc );
293
294         /* Setup the initial rate of the resampler */
295         p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
296     }
297     p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
298
299     p_input->input_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
300     aout_FiltersHintBuffers( p_aout, p_input->pp_filters,
301                              p_input->i_nb_filters,
302                              &p_input->input_alloc );
303
304     /* i_bytes_per_sec is still == -1 if no filters */
305     p_input->input_alloc.i_bytes_per_sec = __MAX(
306                                     p_input->input_alloc.i_bytes_per_sec,
307                                     (int)(p_input->input.i_bytes_per_frame
308                                      * p_input->input.i_rate
309                                      / p_input->input.i_frame_length) );
310     /* Allocate in the heap, it is more convenient for the decoder. */
311     p_input->input_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
312
313     p_input->b_error = VLC_FALSE;
314     p_input->b_restart = VLC_FALSE;
315
316     return 0;
317 }
318
319 /*****************************************************************************
320  * aout_InputDelete : delete an input
321  *****************************************************************************
322  * This function must be entered with the mixer lock.
323  *****************************************************************************/
324 int aout_InputDelete( aout_instance_t * p_aout, aout_input_t * p_input )
325 {
326     if ( p_input->b_error ) return 0;
327
328     aout_FiltersDestroyPipeline( p_aout, p_input->pp_filters,
329                                  p_input->i_nb_filters );
330     aout_FiltersDestroyPipeline( p_aout, p_input->pp_resamplers,
331                                  p_input->i_nb_resamplers );
332     aout_FifoDestroy( p_aout, &p_input->fifo );
333
334     return 0;
335 }
336
337 /*****************************************************************************
338  * aout_InputPlay : play a buffer
339  *****************************************************************************
340  * This function must be entered with the input lock.
341  *****************************************************************************/
342 int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
343                     aout_buffer_t * p_buffer )
344 {
345     mtime_t start_date;
346
347     if( p_input->b_restart )
348     {
349         aout_fifo_t fifo, dummy_fifo;
350         byte_t      *p_first_byte_to_mix;
351
352         vlc_mutex_lock( &p_aout->mixer_lock );
353
354         /* A little trick to avoid loosing our input fifo */
355         aout_FifoInit( p_aout, &dummy_fifo, p_aout->mixer.mixer.i_rate );
356         p_first_byte_to_mix = p_input->p_first_byte_to_mix;
357         fifo = p_input->fifo;
358         p_input->fifo = dummy_fifo;
359         aout_InputDelete( p_aout, p_input );
360         aout_InputNew( p_aout, p_input );
361         p_input->p_first_byte_to_mix = p_first_byte_to_mix;
362         p_input->fifo = fifo;
363
364         vlc_mutex_unlock( &p_aout->mixer_lock );
365     }
366
367     /* We don't care if someone changes the start date behind our back after
368      * this. We'll deal with that when pushing the buffer, and compensate
369      * with the next incoming buffer. */
370     vlc_mutex_lock( &p_aout->input_fifos_lock );
371     start_date = aout_FifoNextStart( p_aout, &p_input->fifo );
372     vlc_mutex_unlock( &p_aout->input_fifos_lock );
373
374     if ( start_date != 0 && start_date < mdate() )
375     {
376         /* The decoder is _very_ late. This can only happen if the user
377          * pauses the stream (or if the decoder is buggy, which cannot
378          * happen :). */
379         msg_Warn( p_aout, "computed PTS is out of range ("I64Fd"), "
380                   "clearing out", mdate() - start_date );
381         vlc_mutex_lock( &p_aout->input_fifos_lock );
382         aout_FifoSet( p_aout, &p_input->fifo, 0 );
383         p_input->p_first_byte_to_mix = NULL;
384         vlc_mutex_unlock( &p_aout->input_fifos_lock );
385         if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
386             msg_Warn( p_aout, "timing screwed, stopping resampling" );
387         p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
388         if ( p_input->i_nb_resamplers != 0 )
389         {
390             p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
391             p_input->pp_resamplers[0]->b_continuity = VLC_FALSE;
392         }
393         start_date = 0;
394     }
395
396     if ( p_buffer->start_date < mdate() + AOUT_MIN_PREPARE_TIME )
397     {
398         /* The decoder gives us f*cked up PTS. It's its business, but we
399          * can't present it anyway, so drop the buffer. */
400         msg_Warn( p_aout, "PTS is out of range ("I64Fd"), dropping buffer",
401                   mdate() - p_buffer->start_date );
402         aout_BufferFree( p_buffer );
403         p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
404         if ( p_input->i_nb_resamplers != 0 )
405         {
406             p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
407             p_input->pp_resamplers[0]->b_continuity = VLC_FALSE;
408         }
409         return 0;
410     }
411
412     /* If the audio drift is too big then it's not worth trying to resample
413      * the audio. */
414     if ( start_date != 0 &&
415          ( start_date < p_buffer->start_date - 3 * AOUT_PTS_TOLERANCE ) )
416     {
417         msg_Warn( p_aout, "audio drift is too big ("I64Fd"), clearing out",
418                   start_date - p_buffer->start_date );
419         vlc_mutex_lock( &p_aout->input_fifos_lock );
420         aout_FifoSet( p_aout, &p_input->fifo, 0 );
421         p_input->p_first_byte_to_mix = NULL;
422         vlc_mutex_unlock( &p_aout->input_fifos_lock );
423         if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
424             msg_Warn( p_aout, "timing screwed, stopping resampling" );
425         p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
426         if ( p_input->i_nb_resamplers != 0 )
427         {
428             p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
429             p_input->pp_resamplers[0]->b_continuity = VLC_FALSE;
430         }
431         start_date = 0;
432     }
433     else if ( start_date != 0 &&
434               ( start_date > p_buffer->start_date + 3 * AOUT_PTS_TOLERANCE ) )
435     {
436         msg_Warn( p_aout, "audio drift is too big ("I64Fd"), dropping buffer",
437                   start_date - p_buffer->start_date );
438         aout_BufferFree( p_buffer );
439         return 0;
440     }
441
442     if ( start_date == 0 ) start_date = p_buffer->start_date;
443
444     /* Run pre-filters. */
445
446     aout_FiltersPlay( p_aout, p_input->pp_filters, p_input->i_nb_filters,
447                       &p_buffer );
448
449     /* Run the resampler if needed.
450      * We first need to calculate the output rate of this resampler. */
451     if ( ( p_input->i_resampling_type == AOUT_RESAMPLING_NONE ) &&
452          ( start_date < p_buffer->start_date - AOUT_PTS_TOLERANCE
453            || start_date > p_buffer->start_date + AOUT_PTS_TOLERANCE ) &&
454          p_input->i_nb_resamplers > 0 )
455     {
456         /* Can happen in several circumstances :
457          * 1. A problem at the input (clock drift)
458          * 2. A small pause triggered by the user
459          * 3. Some delay in the output stage, causing a loss of lip
460          *    synchronization
461          * Solution : resample the buffer to avoid a scratch.
462          */
463         mtime_t drift = p_buffer->start_date - start_date;
464
465         p_input->i_resamp_start_date = mdate();
466         p_input->i_resamp_start_drift = (int)drift;
467
468         if ( drift > 0 )
469             p_input->i_resampling_type = AOUT_RESAMPLING_DOWN;
470         else
471             p_input->i_resampling_type = AOUT_RESAMPLING_UP;
472
473         msg_Warn( p_aout, "buffer is "I64Fd" %s, triggering %ssampling",
474                           drift > 0 ? drift : -drift,
475                           drift > 0 ? "in advance" : "late",
476                           drift > 0 ? "down" : "up");
477     }
478
479     if ( p_input->i_resampling_type != AOUT_RESAMPLING_NONE )
480     {
481         /* Resampling has been triggered previously (because of dates
482          * mismatch). We want the resampling to happen progressively so
483          * it isn't too audible to the listener. */
484
485         if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
486         {
487             p_input->pp_resamplers[0]->input.i_rate += 2; /* Hz */
488         }
489         else
490         {
491             p_input->pp_resamplers[0]->input.i_rate -= 2; /* Hz */
492         }
493
494         /* Check if everything is back to normal, in which case we can stop the
495          * resampling */
496         if( p_input->pp_resamplers[0]->input.i_rate ==
497               p_input->input.i_rate )
498         {
499             p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
500             msg_Warn( p_aout, "resampling stopped after "I64Fi" usec "
501                       "(drift: "I64Fi")",
502                       mdate() - p_input->i_resamp_start_date,
503                       p_buffer->start_date - start_date);
504         }
505         else if( abs( (int)(p_buffer->start_date - start_date) ) <
506                  abs( p_input->i_resamp_start_drift ) / 2 )
507         {
508             /* if we reduced the drift from half, then it is time to switch
509              * back the resampling direction. */
510             if( p_input->i_resampling_type == AOUT_RESAMPLING_UP )
511                 p_input->i_resampling_type = AOUT_RESAMPLING_DOWN;
512             else
513                 p_input->i_resampling_type = AOUT_RESAMPLING_UP;
514             p_input->i_resamp_start_drift = 0;
515         }
516         else if( p_input->i_resamp_start_drift &&
517                  ( abs( (int)(p_buffer->start_date - start_date) ) >
518                    abs( p_input->i_resamp_start_drift ) * 3 / 2 ) )
519         {
520             /* If the drift is increasing and not decreasing, than something
521              * is bad. We'd better stop the resampling right now. */
522             msg_Warn( p_aout, "timing screwed, stopping resampling" );
523             p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
524             p_input->pp_resamplers[0]->input.i_rate = p_input->input.i_rate;
525         }
526     }
527
528     /* Adding the start date will be managed by aout_FifoPush(). */
529     p_buffer->end_date = start_date +
530         (p_buffer->end_date - p_buffer->start_date);
531     p_buffer->start_date = start_date;
532
533     /* Actually run the resampler now. */
534     if ( p_input->i_nb_resamplers > 0 )
535     {
536         aout_FiltersPlay( p_aout, p_input->pp_resamplers,
537                           p_input->i_nb_resamplers,
538                           &p_buffer );
539     }
540
541     vlc_mutex_lock( &p_aout->input_fifos_lock );
542     aout_FifoPush( p_aout, &p_input->fifo, p_buffer );
543     vlc_mutex_unlock( &p_aout->input_fifos_lock );
544
545     return 0;
546 }
547
548 static int ChangeFiltersString( aout_instance_t * p_aout,
549                                  char *psz_name, vlc_bool_t b_add )
550 {
551     vlc_value_t val;
552     char *psz_parser;
553
554     var_Get( p_aout, "audio-filter", &val );
555
556     if( !val.psz_string ) val.psz_string = strdup("");
557
558     psz_parser = strstr( val.psz_string, psz_name );
559
560     if( b_add )
561     {
562         if( !psz_parser )
563         {
564             psz_parser = val.psz_string;
565             asprintf( &val.psz_string, (*val.psz_string) ? "%s,%s" : "%s%s",
566                       val.psz_string, psz_name );
567             free( psz_parser );
568         }
569         else
570         {
571             return 0;
572         }
573     }
574     else
575     {
576         if( psz_parser )
577         {
578             memmove( psz_parser, psz_parser + strlen(psz_name) +
579                      (*(psz_parser + strlen(psz_name)) == ',' ? 1 : 0 ),
580                      strlen(psz_parser + strlen(psz_name)) + 1 );
581         }
582         else
583         {
584             free( val.psz_string );
585             return 0;
586         }
587     }
588
589     var_Set( p_aout, "audio-filter", val );
590     free( val.psz_string );
591     return 1;
592 }
593
594 static int VisualizationCallback( vlc_object_t *p_this, char const *psz_cmd,
595                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
596 {
597     aout_instance_t *p_aout = (aout_instance_t *)p_this;
598     char *psz_mode = newval.psz_string;
599     vlc_value_t val;
600     int i;
601
602     if( !psz_mode || !*psz_mode )
603     {
604         ChangeFiltersString( p_aout, "goom", VLC_FALSE );
605         ChangeFiltersString( p_aout, "visual", VLC_FALSE );
606         ChangeFiltersString( p_aout, "galaktos", VLC_FALSE );
607     }
608     else
609     {
610         if( !strcmp( "goom", psz_mode ) )
611         {
612             ChangeFiltersString( p_aout, "visual", VLC_FALSE );
613             ChangeFiltersString( p_aout, "goom", VLC_TRUE );
614             ChangeFiltersString( p_aout, "galaktos", VLC_FALSE );
615         }
616         else if( !strcmp( "galaktos", psz_mode ) )
617         {
618             ChangeFiltersString( p_aout, "visual", VLC_FALSE );
619             ChangeFiltersString( p_aout, "goom", VLC_FALSE );
620             ChangeFiltersString( p_aout, "galaktos", VLC_TRUE );
621         }
622         else
623         {
624             val.psz_string = psz_mode;
625             var_Create( p_aout, "effect-list", VLC_VAR_STRING );
626             var_Set( p_aout, "effect-list", val );
627
628             ChangeFiltersString( p_aout, "goom", VLC_FALSE );
629             ChangeFiltersString( p_aout, "visual", VLC_TRUE );
630             ChangeFiltersString( p_aout, "galaktos", VLC_FALSE );
631         }
632     }
633
634     /* That sucks */
635     for( i = 0; i < p_aout->i_nb_inputs; i++ )
636     {
637         p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
638     }
639
640     return VLC_SUCCESS;
641 }
642
643 static int EqualizerCallback( vlc_object_t *p_this, char const *psz_cmd,
644                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
645 {
646     aout_instance_t *p_aout = (aout_instance_t *)p_this;
647     char *psz_mode = newval.psz_string;
648     vlc_value_t val;
649     int i;
650     int i_ret;
651
652     if( !psz_mode || !*psz_mode )
653     {
654         i_ret = ChangeFiltersString( p_aout, "equalizer", VLC_FALSE );
655     }
656     else
657     {
658         val.psz_string = psz_mode;
659         var_Create( p_aout, "equalizer-preset", VLC_VAR_STRING );
660         var_Set( p_aout, "equalizer-preset", val );
661         i_ret = ChangeFiltersString( p_aout, "equalizer", VLC_TRUE );
662
663     }
664
665     /* That sucks */
666     if( i_ret == 1 )
667     {
668         for( i = 0; i < p_aout->i_nb_inputs; i++ )
669         {
670             p_aout->pp_inputs[i]->b_restart = VLC_TRUE;
671         }
672     }
673
674     return VLC_SUCCESS;
675 }
676
677 static aout_filter_t * allocateUserChannelMixer( aout_instance_t * p_aout,
678                                      audio_sample_format_t * p_input_format,
679                                      audio_sample_format_t * p_output_format )
680 {
681     aout_filter_t * p_channel_mixer;
682
683     /* Retreive user preferred channel mixer */
684     char * psz_name = config_GetPsz( p_aout, "audio-channel-mixer" );
685
686     /* Not specified => let the main pipeline do the mixing */
687     if ( ! psz_name ) return NULL;
688
689     /* Debug information */
690     aout_FormatsPrint( p_aout, "channel mixer", p_input_format,
691                        p_output_format );
692
693     /* Create a VLC object */
694     p_channel_mixer = vlc_object_create( p_aout, sizeof(aout_filter_t) );
695     if( p_channel_mixer == NULL )
696     {
697         msg_Err( p_aout, "cannot add user channel mixer %s", psz_name );
698         return NULL;
699     }
700     vlc_object_attach( p_channel_mixer , p_aout );
701
702     /* Attach the suitable module */
703     memcpy( &p_channel_mixer->input, p_input_format,
704                     sizeof(audio_sample_format_t) );
705     memcpy( &p_channel_mixer->output, p_output_format,
706                     sizeof(audio_sample_format_t) );
707     p_channel_mixer->p_module =
708         module_Need( p_channel_mixer,"audio filter", psz_name, VLC_TRUE );
709     if( p_channel_mixer->p_module== NULL )
710     {
711         msg_Err( p_aout, "cannot add user channel mixer %s", psz_name );
712         vlc_object_detach( p_channel_mixer );
713         vlc_object_destroy( p_channel_mixer );
714         return NULL;
715     }
716     p_channel_mixer->b_continuity = VLC_FALSE;
717
718     /* Ok */
719     return p_channel_mixer;
720 }