]> git.sesse.net Git - vlc/blob - src/audio_output/filters.c
aout: remove unused "equalizer" object variable
[vlc] / src / audio_output / filters.c
1 /*****************************************************************************
2  * filters.c : audio output filters management
3  *****************************************************************************
4  * Copyright (C) 2002-2007 VLC authors and 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 it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <string.h>
32 #include <assert.h>
33
34 #include <vlc_common.h>
35 #include <vlc_dialog.h>
36 #include <vlc_modules.h>
37 #include <vlc_aout.h>
38 #include <vlc_filter.h>
39 #include <vlc_vout.h>                  /* for vout_Request */
40 #include <vlc_input.h>
41
42 #include <libvlc.h>
43 #include "aout_internal.h"
44
45 static filter_t *CreateFilter (vlc_object_t *obj, const char *type,
46                                const char *name, filter_owner_sys_t *owner,
47                                const audio_sample_format_t *infmt,
48                                const audio_sample_format_t *outfmt)
49 {
50     filter_t *filter = vlc_custom_create (obj, sizeof (*filter), type);
51     if (unlikely(filter == NULL))
52         return NULL;
53
54     filter->p_owner = owner;
55     filter->fmt_in.audio = *infmt;
56     filter->fmt_in.i_codec = infmt->i_format;
57     filter->fmt_out.audio = *outfmt;
58     filter->fmt_out.i_codec = outfmt->i_format;
59     filter->p_module = module_need (filter, type, name, false);
60     if (filter->p_module == NULL)
61     {
62         /* If probing failed, formats shall not have been modified. */
63         assert (AOUT_FMTS_IDENTICAL(&filter->fmt_in.audio, infmt));
64         assert (AOUT_FMTS_IDENTICAL(&filter->fmt_out.audio, outfmt));
65         vlc_object_release (filter);
66         filter = NULL;
67     }
68     else
69         assert (filter->pf_audio_filter != NULL);
70     return filter;
71 }
72
73 static filter_t *FindConverter (vlc_object_t *obj,
74                                 const audio_sample_format_t *infmt,
75                                 const audio_sample_format_t *outfmt)
76 {
77     return CreateFilter (obj, "audio converter", NULL, NULL, infmt, outfmt);
78 }
79
80 static filter_t *FindResampler (vlc_object_t *obj,
81                                 const audio_sample_format_t *infmt,
82                                 const audio_sample_format_t *outfmt)
83 {
84     return CreateFilter (obj, "audio resampler", "$audio-resampler", NULL,
85                          infmt, outfmt);
86 }
87
88 /**
89  * Destroys a chain of audio filters.
90  */
91 static void aout_FiltersPipelineDestroy(filter_t *const *filters, unsigned n)
92 {
93     for( unsigned i = 0; i < n; i++ )
94     {
95         filter_t *p_filter = filters[i];
96
97         module_unneed( p_filter, p_filter->p_module );
98         vlc_object_release( p_filter );
99     }
100 }
101
102 static filter_t *TryFormat (vlc_object_t *obj, vlc_fourcc_t codec,
103                             audio_sample_format_t *restrict fmt)
104 {
105     audio_sample_format_t output = *fmt;
106
107     assert (codec != fmt->i_format);
108     output.i_format = codec;
109     aout_FormatPrepare (&output);
110
111     filter_t *filter = FindConverter (obj, fmt, &output);
112     if (filter != NULL)
113         *fmt = output;
114     return filter;
115 }
116
117 /**
118  * Allocates audio format conversion filters
119  * @param obj parent VLC object for new filters
120  * @param filters table of filters [IN/OUT]
121  * @param count pointer to the number of filters in the table [IN/OUT]
122  * @param max size of filters table [IN]
123  * @param infmt input audio format
124  * @param outfmt output audio format
125  * @return 0 on success, -1 on failure
126  */
127 static int aout_FiltersPipelineCreate(vlc_object_t *obj, filter_t **filters,
128                                       unsigned *count, unsigned max,
129                                  const audio_sample_format_t *restrict infmt,
130                                  const audio_sample_format_t *restrict outfmt)
131 {
132     aout_FormatsPrint (obj, "conversion:", infmt, outfmt);
133     max -= *count;
134     filters += *count;
135
136     /* There is a lot of second guessing on what the conversion plugins can
137      * and cannot do. This seems hardly avoidable, the conversion problem need
138      * to be reduced somehow. */
139     audio_sample_format_t input = *infmt;
140     unsigned n = 0;
141
142     /* Encapsulate or decode non-linear formats */
143     if (!AOUT_FMT_LINEAR(infmt) && infmt->i_format != outfmt->i_format)
144     {
145         if (n == max)
146             goto overflow;
147
148         filter_t *f = TryFormat (obj, VLC_CODEC_S32N, &input);
149         if (f == NULL)
150             f = TryFormat (obj, VLC_CODEC_FL32, &input);
151         if (f == NULL)
152         {
153             msg_Err (obj, "cannot find %s for conversion pipeline",
154                      "decoder");
155             goto error;
156         }
157
158         filters[n++] = f;
159     }
160     assert (AOUT_FMT_LINEAR(&input));
161
162     /* Remix channels */
163     if (infmt->i_physical_channels != outfmt->i_physical_channels
164      || infmt->i_original_channels != outfmt->i_original_channels)
165     {   /* Remixing currently requires FL32... TODO: S16N */
166         if (input.i_format != VLC_CODEC_FL32)
167         {
168             if (n == max)
169                 goto overflow;
170
171             filter_t *f = TryFormat (obj, VLC_CODEC_FL32, &input);
172             if (f == NULL)
173             {
174                 msg_Err (obj, "cannot find %s for conversion pipeline",
175                          "pre-mix converter");
176                 goto error;
177             }
178
179             filters[n++] = f;
180         }
181
182         if (n == max)
183             goto overflow;
184
185         audio_sample_format_t output;
186         output.i_format = input.i_format;
187         output.i_rate = input.i_rate;
188         output.i_physical_channels = outfmt->i_physical_channels;
189         output.i_original_channels = outfmt->i_original_channels;
190         aout_FormatPrepare (&output);
191
192         filter_t *f = FindConverter (obj, &input, &output);
193         if (f == NULL)
194         {
195             msg_Err (obj, "cannot find %s for conversion pipeline",
196                      "remixer");
197             goto error;
198         }
199
200         input = output;
201         filters[n++] = f;
202     }
203
204     /* Resample */
205     if (input.i_rate != outfmt->i_rate)
206     {   /* Resampling works with any linear format, but may be ugly. */
207         if (n == max)
208             goto overflow;
209
210         audio_sample_format_t output = input;
211         output.i_rate = outfmt->i_rate;
212
213         filter_t *f = FindConverter (obj, &input, &output);
214         if (f == NULL)
215         {
216             msg_Err (obj, "cannot find %s for conversion pipeline",
217                      "resampler");
218             goto error;
219         }
220
221         input = output;
222         filters[n++] = f;
223     }
224
225     /* Format */
226     if (input.i_format != outfmt->i_format)
227     {
228         if (max == 0)
229             goto overflow;
230
231         filter_t *f = TryFormat (obj, outfmt->i_format, &input);
232         if (f == NULL)
233         {
234             msg_Err (obj, "cannot find %s for conversion pipeline",
235                      "post-mix converter");
236             goto error;
237         }
238         filters[n++] = f;
239     }
240
241     msg_Dbg (obj, "conversion pipeline complete");
242     *count += n;
243     return 0;
244
245 overflow:
246     msg_Err (obj, "maximum of %u conversion filters reached", max);
247     dialog_Fatal (obj, _("Audio filtering failed"),
248                   _("The maximum number of filters (%u) was reached."), max);
249 error:
250     aout_FiltersPipelineDestroy (filters, n);
251     return -1;
252 }
253
254 /**
255  * Filters an audio buffer through a chain of filters.
256  */
257 static block_t *aout_FiltersPipelinePlay(filter_t *const *filters,
258                                          unsigned count, block_t *block)
259 {
260     /* TODO: use filter chain */
261     for (unsigned i = 0; (i < count) && (block != NULL); i++)
262     {
263         filter_t *filter = filters[i];
264
265         /* Please note that p_block->i_nb_samples & i_buffer
266          * shall be set by the filter plug-in. */
267         block = filter->pf_audio_filter (filter, block);
268     }
269     return block;
270 }
271
272 #define AOUT_MAX_FILTERS 10
273
274 struct aout_filters
275 {
276     filter_t *rate_filter; /**< The filter adjusting samples count
277         (either the scaletempo filter or a resampler) */
278     filter_t *resampler; /**< The resampler */
279     int resampling; /**< Current resampling (Hz) */
280
281     unsigned count; /**< Number of filters */
282     filter_t *tab[AOUT_MAX_FILTERS]; /**< Configured user filters
283         (e.g. equalization) and their conversions */
284 };
285
286 /** Callback for visualization selection */
287 static int VisualizationCallback (vlc_object_t *obj, const char *var,
288                                   vlc_value_t oldval, vlc_value_t newval,
289                                   void *data)
290 {
291     const char *mode = newval.psz_string;
292
293     if (!*mode)
294         mode = "none";
295     /* FIXME: This ugly hack enforced by visual effect-list, as is the need for
296      * separate "visual" (external) and "audio-visual" (internal) variables...
297      * The visual plugin should have one submodule per effect instead. */
298     if (strcasecmp (mode, "none") && strcasecmp (mode, "goom")
299      && strcasecmp (mode, "projectm") && strcasecmp (mode, "vsxu")
300      && strcasecmp (mode, "glspectrum"))
301     {
302         var_Create (obj, "effect-list", VLC_VAR_STRING);
303         var_SetString (obj, "effect-list", mode);
304         mode = "visual";
305     }
306
307     var_SetString (obj, "audio-visual", mode);
308     aout_InputRequestRestart ((audio_output_t *)obj);
309     (void) var; (void) oldval; (void) data;
310     return VLC_SUCCESS;
311 }
312
313 static int EqualizerCallback (vlc_object_t *obj, const char *var,
314                               vlc_value_t oldval, vlc_value_t newval,
315                               void *data)
316 {
317     const char *val = newval.psz_string;
318
319     if (aout_ChangeFilterString (obj, obj, "audio-filter", "equalizer", *val))
320         aout_InputRequestRestart ((audio_output_t *)obj); /* <- That sucks! */
321
322     (void) var; (void) oldval; (void) data;
323     return VLC_SUCCESS;
324 }
325
326 vout_thread_t *aout_filter_RequestVout (filter_t *filter, vout_thread_t *vout,
327                                         video_format_t *fmt)
328 {
329     /* NOTE: This only works from aout_filters_t.
330      * If you want to use visualization filters from another place, you will
331      * need to add a new pf_aout_request_vout callback or store a pointer
332      * to aout_request_vout_t inside filter_t (i.e. a level of indirection). */
333     const aout_request_vout_t *req = (void *)filter->p_owner;
334     char *visual = var_InheritString (filter->p_parent, "audio-visual");
335     /* NOTE: Disable recycling to always close the filter vout because OpenGL
336      * visualizations do not use this function to ask for a context. */
337     bool recycle = false;
338     free (visual);
339
340     return req->pf_request_vout (req->p_private, vout, fmt, recycle);
341 }
342
343 static int AppendFilter(vlc_object_t *obj, const char *type, const char *name,
344                         aout_filters_t *restrict filters, const void *owner,
345                         audio_sample_format_t *restrict infmt,
346                         const audio_sample_format_t *restrict outfmt)
347 {
348     const unsigned max = sizeof (filters->tab) / sizeof (filters->tab[0]);
349     if (filters->count >= max)
350     {
351         msg_Err (obj, "maximum of %u filters reached", max);
352         return -1;
353     }
354
355     filter_t *filter = CreateFilter (obj, type, name,
356                                      (void *)owner, infmt, outfmt);
357     if (filter == NULL)
358     {
359         msg_Err (obj, "cannot add user %s \"%s\" (skipped)", type, name);
360         return -1;
361     }
362
363     /* convert to the filter input format if necessary */
364     if (aout_FiltersPipelineCreate (obj, filters->tab, &filters->count,
365                                     max - 1, infmt, &filter->fmt_in.audio))
366     {
367         msg_Err (filter, "cannot add user %s \"%s\" (skipped)", type, name);
368         module_unneed (filter, filter->p_module);
369         vlc_object_release (filter);
370         return -1;
371     }
372
373     assert (filters->count < max);
374     filters->tab[filters->count] = filter;
375     filters->count++;
376     *infmt = filter->fmt_out.audio;
377     return 0;
378 }
379
380 #undef aout_FiltersNew
381 /**
382  * Sets a chain of audio filters up.
383  * \param obj parent object for the filters
384  * \param infmt chain input format [IN]
385  * \param outfmt chain output format [IN]
386  * \param request_vout visualization video output request callback
387  * \return a filters chain or NULL on failure
388  *
389  * \note
390  * *request_vout (if not NULL) must remain valid until aout_FiltersDelete().
391  *
392  * \bug
393  * If request_vout is non NULL, obj is assumed to be an audio_output_t pointer.
394  */
395 aout_filters_t *aout_FiltersNew (vlc_object_t *obj,
396                                  const audio_sample_format_t *restrict infmt,
397                                  const audio_sample_format_t *restrict outfmt,
398                                  const aout_request_vout_t *request_vout)
399 {
400     aout_filters_t *filters = malloc (sizeof (*filters));
401     if (unlikely(filters == NULL))
402         return NULL;
403
404     filters->rate_filter = NULL;
405     filters->resampler = NULL;
406     filters->resampling = 0;
407     filters->count = 0;
408
409     /* Prepare format structure */
410     aout_FormatPrint (obj, "input", infmt);
411     audio_sample_format_t input_format = *infmt;
412     audio_sample_format_t output_format = *outfmt;
413
414     /* Callbacks (before reading values and also before return statement) */
415     if (request_vout != NULL)
416     {
417         var_AddCallback (obj, "equalizer-bands", EqualizerCallback, NULL);
418         var_AddCallback (obj, "visual", VisualizationCallback, NULL);
419
420         var_TriggerCallback( obj, "equalizer-bands" );
421     }
422
423     /* Now add user filters */
424     if (!AOUT_FMT_LINEAR(outfmt))
425     {   /* Non-linear output: just convert formats, no filters/visu */
426         if (!AOUT_FMTS_IDENTICAL(infmt, outfmt))
427         {
428             aout_FormatsPrint (obj, "pass-through:", infmt, outfmt);
429             filters->tab[0] = FindConverter(obj, infmt, outfmt);
430             if (filters->tab[0] == NULL)
431             {
432                 msg_Err (obj, "cannot setup pass-through");
433                 goto error;
434             }
435             filters->count++;
436         }
437         return filters;
438     }
439
440     /* parse user filter lists */
441     if (var_InheritBool (obj, "audio-time-stretch"))
442     {
443         if (AppendFilter(obj, "audio filter", "scaletempo",
444                          filters, NULL, &input_format, &output_format) == 0)
445             filters->rate_filter = filters->tab[filters->count - 1];
446     }
447
448     char *str = var_InheritString (obj, "audio-filter");
449     if (str != NULL)
450     {
451         char *p = str, *name;
452         while ((name = strsep (&p, " :")) != NULL)
453         {
454             AppendFilter(obj, "audio filter", name, filters,
455                          NULL, &input_format, &output_format);
456         }
457         free (str);
458     }
459
460     if (request_vout != NULL)
461     {
462         char *visual = var_InheritString (obj, "audio-visual");
463         if (visual != NULL && strcasecmp (visual, "none"))
464             AppendFilter(obj, "visualization", visual, filters,
465                          request_vout, &input_format, &output_format);
466         free (visual);
467     }
468
469     /* convert to the output format (minus resampling) if necessary */
470     output_format.i_rate = input_format.i_rate;
471     if (aout_FiltersPipelineCreate (obj, filters->tab, &filters->count,
472                               AOUT_MAX_FILTERS, &input_format, &output_format))
473     {
474         msg_Err (obj, "cannot setup filtering pipeline");
475         goto error;
476     }
477     input_format = output_format;
478
479     /* insert the resampler */
480     output_format.i_rate = outfmt->i_rate;
481     assert (AOUT_FMTS_IDENTICAL(&output_format, outfmt));
482     filters->resampler = FindResampler (obj, &input_format,
483                                         &output_format);
484     if (filters->resampler == NULL && input_format.i_rate != outfmt->i_rate)
485     {
486         msg_Err (obj, "cannot setup a resampler");
487         goto error;
488     }
489     if (filters->rate_filter == NULL)
490         filters->rate_filter = filters->resampler;
491
492     return filters;
493
494 error:
495     aout_FiltersPipelineDestroy (filters->tab, filters->count);
496     var_DelCallback (obj, "equalizer-bands", EqualizerCallback, NULL);
497     var_DelCallback (obj, "visual", VisualizationCallback, NULL);
498     free (filters);
499     return NULL;
500 }
501
502 #undef aout_FiltersDelete
503 /**
504  * Destroys a chain of audio filters.
505  * \param obj object used with aout_FiltersNew()
506  * \param filters chain to be destroyed
507  * \bug
508  * obj must be NULL iff request_vout was NULL in aout_FiltersNew()
509  * (this implies obj is an audio_output_t pointer if non NULL).
510  */
511 void aout_FiltersDelete (vlc_object_t *obj, aout_filters_t *filters)
512 {
513     if (filters->resampler != NULL)
514         aout_FiltersPipelineDestroy (&filters->resampler, 1);
515     aout_FiltersPipelineDestroy (filters->tab, filters->count);
516     if (obj != NULL)
517     {
518         var_DelCallback (obj, "equalizer-bands", EqualizerCallback, NULL);
519         var_DelCallback (obj, "visual", VisualizationCallback, NULL);
520     }
521     free (filters);
522 }
523
524 bool aout_FiltersAdjustResampling (aout_filters_t *filters, int adjust)
525 {
526     if (filters->resampler == NULL)
527         return false;
528
529     if (adjust)
530         filters->resampling += adjust;
531     else
532         filters->resampling = 0;
533     return filters->resampling != 0;
534 }
535
536 block_t *aout_FiltersPlay (aout_filters_t *filters, block_t *block, int rate)
537 {
538     int nominal_rate = 0;
539
540     if (rate != INPUT_RATE_DEFAULT)
541     {
542         filter_t *rate_filter = filters->rate_filter;
543
544         if (rate_filter == NULL)
545             goto drop; /* Without linear, non-nominal rate is impossible. */
546
547         /* Override input rate */
548         nominal_rate = rate_filter->fmt_in.audio.i_rate;
549         rate_filter->fmt_in.audio.i_rate =
550             (nominal_rate * INPUT_RATE_DEFAULT) / rate;
551     }
552
553     block = aout_FiltersPipelinePlay (filters->tab, filters->count, block);
554     if (filters->resampler != NULL)
555     {   /* NOTE: the resampler needs to run even if resampling is 0.
556          * The decoder and output rates can still be different. */
557         filters->resampler->fmt_in.audio.i_rate += filters->resampling;
558         block = aout_FiltersPipelinePlay (&filters->resampler, 1, block);
559         filters->resampler->fmt_in.audio.i_rate -= filters->resampling;
560     }
561
562     if (nominal_rate != 0)
563     {   /* Restore input rate */
564         assert (filters->rate_filter != NULL);
565         filters->rate_filter->fmt_in.audio.i_rate = nominal_rate;
566     }
567     return block;
568
569 drop:
570     block_Release (block);
571     return NULL;
572 }