equalizer.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:19k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * equalizer.c:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004, 2006 the VideoLAN team
  5.  * $Id: ed9df4d5cbdc83e5a51ca910963eca4c786b6e8c $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@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.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <math.h>
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_charset.h>
  33. #include "vlc_aout.h"
  34. #include "equalizer_presets.h"
  35. /* TODO:
  36.  *  - add tables for other rates ( 22500, 11250, ...)
  37.  *  - optimize a bit (you can hardly do slower ;)
  38.  *  - add tables for more bands (15 and 32 would be cool), maybe with auto coeffs
  39.  *  computation (not too hard once the Q is found).
  40.  *  - support for external preset
  41.  *  - callback to handle preset changes on the fly
  42.  *  - ...
  43.  */
  44. /*****************************************************************************
  45.  * Module descriptor
  46.  *****************************************************************************/
  47. static int  Open ( vlc_object_t * );
  48. static void Close( vlc_object_t * );
  49. #define PRESET_TEXT N_( "Equalizer preset" )
  50. #define PRESET_LONGTEXT N_("Preset to use for the equalizer." )
  51. #define BANDS_TEXT N_( "Bands gain")
  52. #define BANDS_LONGTEXT N_( 
  53.          "Don't use presets, but manually specified bands. You need to " 
  54.          "provide 10 values between -20dB and 20dB, separated by spaces, " 
  55.          "e.g. "0 2 4 2 0 -2 -4 -2 0"." )
  56. #define TWOPASS_TEXT N_( "Two pass" )
  57. #define TWOPASS_LONGTEXT N_( "Filter the audio twice. This provides a more "  
  58.          "intense effect.")
  59. #define PREAMP_TEXT N_("Global gain" )
  60. #define PREAMP_LONGTEXT N_("Set the global gain in dB (-20 ... 20)." )
  61. vlc_module_begin ()
  62.     set_description( N_("Equalizer with 10 bands") )
  63.     set_shortname( N_("Equalizer" ) )
  64.     set_capability( "audio filter", 0 )
  65.     set_category( CAT_AUDIO )
  66.     set_subcategory( SUBCAT_AUDIO_AFILTER )
  67.     add_string( "equalizer-preset", "flat", NULL, PRESET_TEXT,
  68.                 PRESET_LONGTEXT, false )
  69.         change_string_list( preset_list, preset_list_text, 0 )
  70.     add_string( "equalizer-bands", NULL, NULL, BANDS_TEXT,
  71.                 BANDS_LONGTEXT, true )
  72.     add_bool( "equalizer-2pass", 0, NULL, TWOPASS_TEXT,
  73.               TWOPASS_LONGTEXT, true )
  74.     add_float( "equalizer-preamp", 12.0, NULL, PREAMP_TEXT,
  75.                PREAMP_LONGTEXT, true )
  76.     set_callbacks( Open, Close )
  77.     add_shortcut( "equalizer" )
  78. vlc_module_end ()
  79. /*****************************************************************************
  80.  * Local prototypes
  81.  *****************************************************************************/
  82. struct aout_filter_sys_t
  83. {
  84.     /* Filter static config */
  85.     int i_band;
  86.     float *f_alpha;
  87.     float *f_beta;
  88.     float *f_gamma;
  89.     float f_newpreamp;
  90.     char *psz_newbands;
  91.     bool b_first;
  92.     /* Filter dyn config */
  93.     float *f_amp;   /* Per band amp */
  94.     float f_gamp;   /* Global preamp */
  95.     bool b_2eqz;
  96.     /* Filter state */
  97.     float x[32][2];
  98.     float y[32][128][2];
  99.     /* Second filter state */
  100.     float x2[32][2];
  101.     float y2[32][128][2];
  102. };
  103. static void DoWork( aout_instance_t *, aout_filter_t *,
  104.                     aout_buffer_t *, aout_buffer_t * );
  105. #define EQZ_IN_FACTOR (0.25)
  106. static int  EqzInit( aout_filter_t *, int );
  107. static void EqzFilter( aout_filter_t *, float *, float *,
  108.                         int, int );
  109. static void EqzClean( aout_filter_t * );
  110. static int PresetCallback( vlc_object_t *, char const *,
  111.                                            vlc_value_t, vlc_value_t, void * );
  112. static int PreampCallback( vlc_object_t *, char const *,
  113.                                            vlc_value_t, vlc_value_t, void * );
  114. static int BandsCallback ( vlc_object_t *, char const *,
  115.                                            vlc_value_t, vlc_value_t, void * );
  116. /*****************************************************************************
  117.  * Open:
  118.  *****************************************************************************/
  119. static int Open( vlc_object_t *p_this )
  120. {
  121.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  122.     aout_filter_sys_t *p_sys;
  123.     bool         b_fit = true;
  124.     if( p_filter->input.i_format != VLC_FOURCC('f','l','3','2' ) ||
  125.         p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  126.     {
  127.         b_fit = false;
  128.         p_filter->input.i_format = VLC_FOURCC('f','l','3','2');
  129.         p_filter->output.i_format = VLC_FOURCC('f','l','3','2');
  130.         msg_Warn( p_filter, "bad input or output format" );
  131.     }
  132.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  133.     {
  134.         b_fit = false;
  135.         memcpy( &p_filter->output, &p_filter->input,
  136.                 sizeof(audio_sample_format_t) );
  137.         msg_Warn( p_filter, "input and output formats are not similar" );
  138.     }
  139.     if ( ! b_fit )
  140.     {
  141.         return VLC_EGENERIC;
  142.     }
  143.     p_filter->pf_do_work = DoWork;
  144.     p_filter->b_in_place = true;
  145.     /* Allocate structure */
  146.     p_sys = p_filter->p_sys = malloc( sizeof( aout_filter_sys_t ) );
  147.     if( !p_sys )
  148.         return VLC_ENOMEM;
  149.     if( EqzInit( p_filter, p_filter->input.i_rate ) != VLC_SUCCESS )
  150.     {
  151.         free( p_sys );
  152.         return VLC_EGENERIC;
  153.     }
  154.     return VLC_SUCCESS;
  155. }
  156. /*****************************************************************************
  157.  * Close: close the plugin
  158.  *****************************************************************************/
  159. static void Close( vlc_object_t *p_this )
  160. {
  161.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  162.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  163.     EqzClean( p_filter );
  164.     free( p_sys );
  165. }
  166. /*****************************************************************************
  167.  * DoWork: process samples buffer
  168.  *****************************************************************************
  169.  *
  170.  *****************************************************************************/
  171. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  172.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  173. {
  174.     VLC_UNUSED(p_aout);
  175.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  176.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes;
  177.     EqzFilter( p_filter, (float*)p_out_buf->p_buffer,
  178.                (float*)p_in_buf->p_buffer, p_in_buf->i_nb_samples,
  179.                aout_FormatNbChannels( &p_filter->input ) );
  180. }
  181. /*****************************************************************************
  182.  * Equalizer stuff
  183.  *****************************************************************************/
  184. typedef struct
  185. {
  186.     int   i_band;
  187.     struct
  188.     {
  189.         float f_frequency;
  190.         float f_alpha;
  191.         float f_beta;
  192.         float f_gamma;
  193.     } band[EQZ_BANDS_MAX];
  194. } eqz_config_t;
  195. /* Value from equ-xmms */
  196. static const eqz_config_t eqz_config_44100_10b =
  197. {
  198.     10,
  199.     {
  200.         {    60, 0.003013, 0.993973, 1.993901 },
  201.         {   170, 0.008490, 0.983019, 1.982437 },
  202.         {   310, 0.015374, 0.969252, 1.967331 },
  203.         {   600, 0.029328, 0.941343, 1.934254 },
  204.         {  1000, 0.047918, 0.904163, 1.884869 },
  205.         {  3000, 0.130408, 0.739184, 1.582718 },
  206.         {  6000, 0.226555, 0.546889, 1.015267 },
  207.         { 12000, 0.344937, 0.310127, -0.181410 },
  208.         { 14000, 0.366438, 0.267123, -0.521151 },
  209.         { 16000, 0.379009, 0.241981, -0.808451 },
  210.     }
  211. };
  212. static const eqz_config_t eqz_config_48000_10b =
  213. {
  214.     10,
  215.     {
  216.         {    60, 0.002769, 0.994462, 1.994400 },
  217.         {   170, 0.007806, 0.984388, 1.983897 },
  218.         {   310, 0.014143, 0.971714, 1.970091 },
  219.         {   600, 0.027011, 0.945978, 1.939979 },
  220.         {  1000, 0.044203, 0.911595, 1.895241 },
  221.         {  3000, 0.121223, 0.757553, 1.623767 },
  222.         {  6000, 0.212888, 0.574224, 1.113145 },
  223.         { 12000, 0.331347, 0.337307, 0.000000 },
  224.         { 14000, 0.355263, 0.289473, -0.333740 },
  225.         { 16000, 0.371900, 0.256201, -0.628100 }
  226.     }
  227. };
  228. static inline float EqzConvertdB( float db )
  229. {
  230.     /* Map it to gain,
  231.      * (we do as if the input of iir is /EQZ_IN_FACTOR, but in fact it's the non iir data that is *EQZ_IN_FACTOR)
  232.      * db = 20*log( out / in ) with out = in + amp*iir(i/EQZ_IN_FACTOR)
  233.      * or iir(i) == i for the center freq so
  234.      * db = 20*log( 1 + amp/EQZ_IN_FACTOR )
  235.      * -> amp = EQZ_IN_FACTOR*(10^(db/20) - 1)
  236.      **/
  237.     if( db < -20.0 )
  238.         db = -20.0;
  239.     else if(  db > 20.0 )
  240.         db = 20.0;
  241.     return EQZ_IN_FACTOR * ( pow( 10, db / 20.0 ) - 1.0 );
  242. }
  243. static int EqzInit( aout_filter_t *p_filter, int i_rate )
  244. {
  245.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  246.     const eqz_config_t *p_cfg;
  247.     int i, ch;
  248.     vlc_value_t val1, val2, val3;
  249.     aout_instance_t *p_aout = (aout_instance_t *)p_filter->p_parent;
  250.     /* Select the config */
  251.     if( i_rate == 48000 )
  252.     {
  253.         p_cfg = &eqz_config_48000_10b;
  254.     }
  255.     else if( i_rate == 44100 )
  256.     {
  257.         p_cfg = &eqz_config_44100_10b;
  258.     }
  259.     else
  260.     {
  261.         /* TODO compute the coeffs on the fly */
  262.         msg_Err( p_filter, "rate not supported" );
  263.         return VLC_EGENERIC;
  264.     }
  265.     /* Create the static filter config */
  266.     p_sys->i_band = p_cfg->i_band;
  267.     p_sys->f_alpha = malloc( p_sys->i_band * sizeof(float) );
  268.     p_sys->f_beta  = malloc( p_sys->i_band * sizeof(float) );
  269.     p_sys->f_gamma = malloc( p_sys->i_band * sizeof(float) );
  270.     if( !p_sys->f_alpha || !p_sys->f_beta || !p_sys->f_gamma )
  271.     {
  272.         free( p_sys->f_alpha );
  273.         free( p_sys->f_beta );
  274.         free( p_sys->f_gamma );
  275.         return VLC_ENOMEM;
  276.     }
  277.     for( i = 0; i < p_sys->i_band; i++ )
  278.     {
  279.         p_sys->f_alpha[i] = p_cfg->band[i].f_alpha;
  280.         p_sys->f_beta[i]  = p_cfg->band[i].f_beta;
  281.         p_sys->f_gamma[i] = p_cfg->band[i].f_gamma;
  282.     }
  283.     /* Filter dyn config */
  284.     p_sys->b_2eqz = false;
  285.     p_sys->f_gamp = 1.0;
  286.     p_sys->f_amp  = malloc( p_sys->i_band * sizeof(float) );
  287.     if( !p_sys->f_amp )
  288.     {
  289.         free( p_sys->f_alpha );
  290.         free( p_sys->f_beta );
  291.         free( p_sys->f_gamma );
  292.         return VLC_ENOMEM;
  293.     }
  294.     for( i = 0; i < p_sys->i_band; i++ )
  295.     {
  296.         p_sys->f_amp[i] = 0.0;
  297.     }
  298.     /* Filter state */
  299.     for( ch = 0; ch < 32; ch++ )
  300.     {
  301.         p_sys->x[ch][0]  =
  302.         p_sys->x[ch][1]  =
  303.         p_sys->x2[ch][0] =
  304.         p_sys->x2[ch][1] = 0.0;
  305.         for( i = 0; i < p_sys->i_band; i++ )
  306.         {
  307.             p_sys->y[ch][i][0]  =
  308.             p_sys->y[ch][i][1]  =
  309.             p_sys->y2[ch][i][0] =
  310.             p_sys->y2[ch][i][1] = 0.0;
  311.         }
  312.     }
  313.     var_Create( p_aout, "equalizer-bands", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
  314.     var_Create( p_aout, "equalizer-preset", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
  315.     p_sys->b_2eqz = var_CreateGetBool( p_aout, "equalizer-2pass" );
  316.     var_Create( p_aout, "equalizer-preamp", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
  317.     /* Get initial values */
  318.     var_Get( p_aout, "equalizer-preset", &val1 );
  319.     var_Get( p_aout, "equalizer-bands", &val2 );
  320.     var_Get( p_aout, "equalizer-preamp", &val3 );
  321.     p_sys->b_first = true;
  322.     PresetCallback( VLC_OBJECT( p_aout ), NULL, val1, val1, p_sys );
  323.     BandsCallback(  VLC_OBJECT( p_aout ), NULL, val2, val2, p_sys );
  324.     PreampCallback( VLC_OBJECT( p_aout ), NULL, val3, val3, p_sys );
  325.     p_sys->b_first = false;
  326.     free( val1.psz_string );
  327.     /* Register preset bands (for intf) if : */
  328.     /* We have no bands info --> the preset info must be given to the intf */
  329.     /* or The bands info matches the preset */
  330.     if (p_sys->psz_newbands == NULL)
  331.     {
  332.         msg_Err(p_filter, "No preset selected");
  333.         free( val2.psz_string );
  334.         free( p_sys->f_amp );
  335.         free( p_sys->f_alpha );
  336.         free( p_sys->f_beta );
  337.         free( p_sys->f_gamma );
  338.         return VLC_EGENERIC;
  339.     }
  340.     if( ( *(val2.psz_string) &&
  341.         strstr( p_sys->psz_newbands, val2.psz_string ) ) || !*val2.psz_string )
  342.     {
  343.         var_SetString( p_aout, "equalizer-bands", p_sys->psz_newbands );
  344.         if( p_sys->f_newpreamp == p_sys->f_gamp )
  345.             var_SetFloat( p_aout, "equalizer-preamp", p_sys->f_newpreamp );
  346.     }
  347.     free( val2.psz_string );
  348.     /* Add our own callbacks */
  349.     var_AddCallback( p_aout, "equalizer-preset", PresetCallback, p_sys );
  350.     var_AddCallback( p_aout, "equalizer-bands", BandsCallback, p_sys );
  351.     var_AddCallback( p_aout, "equalizer-preamp", PreampCallback, p_sys );
  352.     msg_Dbg( p_filter, "equalizer loaded for %d Hz with %d bands %d pass",
  353.                         i_rate, p_sys->i_band, p_sys->b_2eqz ? 2 : 1 );
  354.     for( i = 0; i < p_sys->i_band; i++ )
  355.     {
  356.         msg_Dbg( p_filter, "   %d Hz -> factor:%f alpha:%f beta:%f gamma:%f",
  357.                  (int)p_cfg->band[i].f_frequency, p_sys->f_amp[i],
  358.                  p_sys->f_alpha[i], p_sys->f_beta[i], p_sys->f_gamma[i]);
  359.     }
  360.     return VLC_SUCCESS;
  361. }
  362. static void EqzFilter( aout_filter_t *p_filter, float *out, float *in,
  363.                        int i_samples, int i_channels )
  364. {
  365.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  366.     int i, ch, j;
  367.     for( i = 0; i < i_samples; i++ )
  368.     {
  369.         for( ch = 0; ch < i_channels; ch++ )
  370.         {
  371.             const float x = in[ch];
  372.             float o = 0.0;
  373.             for( j = 0; j < p_sys->i_band; j++ )
  374.             {
  375.                 float y = p_sys->f_alpha[j] * ( x - p_sys->x[ch][1] ) +
  376.                           p_sys->f_gamma[j] * p_sys->y[ch][j][0] -
  377.                           p_sys->f_beta[j]  * p_sys->y[ch][j][1];
  378.                 p_sys->y[ch][j][1] = p_sys->y[ch][j][0];
  379.                 p_sys->y[ch][j][0] = y;
  380.                 o += y * p_sys->f_amp[j];
  381.             }
  382.             p_sys->x[ch][1] = p_sys->x[ch][0];
  383.             p_sys->x[ch][0] = x;
  384.             /* Second filter */
  385.             if( p_sys->b_2eqz )
  386.             {
  387.                 const float x2 = EQZ_IN_FACTOR * x + o;
  388.                 o = 0.0;
  389.                 for( j = 0; j < p_sys->i_band; j++ )
  390.                 {
  391.                     float y = p_sys->f_alpha[j] * ( x2 - p_sys->x2[ch][1] ) +
  392.                               p_sys->f_gamma[j] * p_sys->y2[ch][j][0] -
  393.                               p_sys->f_beta[j]  * p_sys->y2[ch][j][1];
  394.                     p_sys->y2[ch][j][1] = p_sys->y2[ch][j][0];
  395.                     p_sys->y2[ch][j][0] = y;
  396.                     o += y * p_sys->f_amp[j];
  397.                 }
  398.                 p_sys->x2[ch][1] = p_sys->x2[ch][0];
  399.                 p_sys->x2[ch][0] = x2;
  400.                 /* We add source PCM + filtered PCM */
  401.                 out[ch] = p_sys->f_gamp *( EQZ_IN_FACTOR * x2 + o );
  402.             }
  403.             else
  404.             {
  405.                 /* We add source PCM + filtered PCM */
  406.                 out[ch] = p_sys->f_gamp *( EQZ_IN_FACTOR * x + o );
  407.             }
  408.         }
  409.         in  += i_channels;
  410.         out += i_channels;
  411.     }
  412. }
  413. static void EqzClean( aout_filter_t *p_filter )
  414. {
  415.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  416.     var_DelCallback( (aout_instance_t *)p_filter->p_parent,
  417.                         "equalizer-bands", BandsCallback, p_sys );
  418.     var_DelCallback( (aout_instance_t *)p_filter->p_parent,
  419.                         "equalizer-preset", PresetCallback, p_sys );
  420.     var_DelCallback( (aout_instance_t *)p_filter->p_parent,
  421.                         "equalizer-preamp", PreampCallback, p_sys );
  422.     free( p_sys->f_alpha );
  423.     free( p_sys->f_beta );
  424.     free( p_sys->f_gamma );
  425.     free( p_sys->f_amp );
  426.     free( p_sys->psz_newbands );
  427. }
  428. static int PresetCallback( vlc_object_t *p_this, char const *psz_cmd,
  429.                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
  430. {
  431.     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
  432.     aout_filter_sys_t *p_sys = (aout_filter_sys_t *)p_data;
  433.     aout_instance_t *p_aout = (aout_instance_t *)p_this;
  434.     char *psz_preset = newval.psz_string;
  435.     if( !*psz_preset || p_sys->i_band != 10 )
  436.         return VLC_SUCCESS;
  437.     for( unsigned i = 0; eqz_preset_10b[i] != NULL; i++ )
  438.     {
  439.         if( !strcasecmp( eqz_preset_10b[i]->psz_name, psz_preset ) )
  440.         {
  441.             char *psz_newbands = NULL;
  442.             p_sys->f_gamp *= pow( 10, eqz_preset_10b[i]->f_preamp / 20.0 );
  443.             for( int j = 0; j < p_sys->i_band; j++ )
  444.             {
  445.                 lldiv_t d;
  446.                 char *psz;
  447.                 p_sys->f_amp[j] = EqzConvertdB( eqz_preset_10b[i]->f_amp[j] );
  448.                 d = lldiv( eqz_preset_10b[i]->f_amp[j] * 10000000, 10000000 );
  449.                 if( asprintf( &psz, "%s %lld.%07llu",
  450.                               psz_newbands ? psz_newbands : "",
  451.                               d.quot, d.rem ) == -1 )
  452.                 {
  453.                     free( psz_newbands );
  454.                     return VLC_ENOMEM;
  455.                 }
  456.                 free( psz_newbands );
  457.                 psz_newbands = psz;
  458.             }
  459.             if( p_sys->b_first == false )
  460.             {
  461.                 var_SetString( p_aout, "equalizer-bands", psz_newbands );
  462.                 var_SetFloat( p_aout, "equalizer-preamp",
  463.                               eqz_preset_10b[i]->f_preamp );
  464.                 free( psz_newbands );
  465.             }
  466.             else
  467.             {
  468.                 p_sys->psz_newbands = psz_newbands;
  469.                 p_sys->f_newpreamp = eqz_preset_10b[i]->f_preamp;
  470.             }
  471.             return VLC_SUCCESS;
  472.         }
  473.     }
  474.     msg_Err( p_aout, "equalizer preset '%s' not found", psz_preset );
  475.     msg_Info( p_aout, "full list:" );
  476.     for( unsigned i = 0; eqz_preset_10b[i] != NULL; i++ )
  477.          msg_Info( p_aout, "  - '%s'", eqz_preset_10b[i]->psz_name );
  478.     return VLC_SUCCESS;
  479. }
  480. static int PreampCallback( vlc_object_t *p_this, char const *psz_cmd,
  481.                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
  482. {
  483.     VLC_UNUSED(p_this); VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
  484.     aout_filter_sys_t *p_sys = (aout_filter_sys_t *)p_data;
  485.     if( newval.f_float < -20.0 )
  486.         newval.f_float = -20.0;
  487.     else if( newval.f_float > 20.0 )
  488.         newval.f_float = 20.0;
  489.     p_sys->f_gamp = pow( 10, newval.f_float /20.0);
  490.     return VLC_SUCCESS;
  491. }
  492. static int BandsCallback( vlc_object_t *p_this, char const *psz_cmd,
  493.                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
  494. {
  495.     VLC_UNUSED(p_this); VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
  496.     aout_filter_sys_t *p_sys = (aout_filter_sys_t *)p_data;
  497.     char *psz_bands = newval.psz_string;
  498.     char *psz_next;
  499.     char *p = psz_bands;
  500.     int i;
  501.     /* Same thing for bands */
  502.     for( i = 0; i < p_sys->i_band; i++ )
  503.     {
  504.         float f;
  505.         if( *psz_bands == '' )
  506.             break;
  507.         /* Read dB -20/20 */
  508.         f = us_strtof( p, &psz_next );
  509.         if( psz_next == p )
  510.             break; /* no conversion */
  511.         p_sys->f_amp[i] = EqzConvertdB( f );
  512.         if( *psz_next == '' )
  513.             break; /* end of line */
  514.         p = &psz_next[1];
  515.     }
  516.     return VLC_SUCCESS;
  517. }