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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * param_eq.c:
  3.  *****************************************************************************
  4.  * Copyright © 2006 the VideoLAN team
  5.  * $Id: b20a84a6e5a81212da79f5605d47e980e611d96b $
  6.  *
  7.  * Authors: Antti Huovilainen
  8.  *          Sigmund A. Helberg <dnumgis@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <math.h>
  31. #include <vlc_common.h>
  32. #include <vlc_plugin.h>
  33. #include <vlc_aout.h>
  34. /*****************************************************************************
  35.  * Module descriptor
  36.  *****************************************************************************/
  37. static int  Open ( vlc_object_t * );
  38. static void Close( vlc_object_t * );
  39. static void CalcPeakEQCoeffs( float, float, float, float, float * );
  40. static void CalcShelfEQCoeffs( float, float, float, int, float, float * );
  41. static void ProcessEQ( float *, float *, float *, unsigned, unsigned, float *, unsigned );
  42. static void DoWork( aout_instance_t *, aout_filter_t *,
  43.                     aout_buffer_t *, aout_buffer_t * );
  44. vlc_module_begin ()
  45.     set_description( N_("Parametric Equalizer") )
  46.     set_shortname( N_("Parametric Equalizer" ) )
  47.     set_capability( "audio filter", 0 )
  48.     set_category( CAT_AUDIO )
  49.     set_subcategory( SUBCAT_AUDIO_AFILTER )
  50.     add_float( "param-eq-lowf", 100, NULL, N_("Low freq (Hz)"),"", false )
  51.     add_float_with_range( "param-eq-lowgain", 0, -20.0, 20.0, NULL,
  52.                           N_("Low freq gain (dB)"), "",false )
  53.     add_float( "param-eq-highf", 10000, NULL, N_("High freq (Hz)"),"", false )
  54.     add_float_with_range( "param-eq-highgain", 0, -20.0, 20.0, NULL,
  55.                           N_("High freq gain (dB)"),"",false )
  56.     add_float( "param-eq-f1", 300, NULL, N_("Freq 1 (Hz)"),"", false )
  57.     add_float_with_range( "param-eq-gain1", 0, -20.0, 20.0, NULL,
  58.                           N_("Freq 1 gain (dB)"), "",false )
  59.     add_float_with_range( "param-eq-q1", 3, 0.1, 100.0, NULL,
  60.                           N_("Freq 1 Q"), "",false )
  61.     add_float( "param-eq-f2", 1000, NULL, N_("Freq 2 (Hz)"),"", false )
  62.     add_float_with_range( "param-eq-gain2", 0, -20.0, 20.0, NULL,
  63.                           N_("Freq 2 gain (dB)"),"",false )
  64.     add_float_with_range( "param-eq-q2", 3, 0.1, 100.0, NULL,
  65.                           N_("Freq 2 Q"),"",false )
  66.     add_float( "param-eq-f3", 3000, NULL, N_("Freq 3 (Hz)"),"", false )
  67.     add_float_with_range( "param-eq-gain3", 0, -20.0, 20.0, NULL,
  68.                           N_("Freq 3 gain (dB)"),"",false )
  69.     add_float_with_range( "param-eq-q3", 3, 0.1, 100.0, NULL,
  70.                           N_("Freq 3 Q"),"",false )
  71.     set_callbacks( Open, Close )
  72. vlc_module_end ()
  73. /*****************************************************************************
  74.  * Local prototypes
  75.  *****************************************************************************/
  76. struct aout_filter_sys_t
  77. {
  78.     /* Filter static config */
  79.     float   f_lowf, f_lowgain;
  80.     float   f_f1, f_Q1, f_gain1;
  81.     float   f_f2, f_Q2, f_gain2;
  82.     float   f_f3, f_Q3, f_gain3;
  83.     float   f_highf, f_highgain;
  84.     /* Filter computed coeffs */
  85.     float   coeffs[5*5];
  86.     /* State */
  87.     float  *p_state;
  88.  
  89. };
  90. /*****************************************************************************
  91.  * Open:
  92.  *****************************************************************************/
  93. static int Open( vlc_object_t *p_this )
  94. {
  95.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  96.     aout_filter_sys_t *p_sys;
  97.     bool         b_fit = true;
  98.     int                i_samplerate;
  99.     if( p_filter->input.i_format != VLC_FOURCC('f','l','3','2' ) ||
  100.         p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  101.     {
  102.         b_fit = false;
  103.         p_filter->input.i_format = VLC_FOURCC('f','l','3','2');
  104.         p_filter->output.i_format = VLC_FOURCC('f','l','3','2');
  105.         msg_Warn( p_filter, "bad input or output format" );
  106.     }
  107.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  108.     {
  109.         b_fit = false;
  110.         memcpy( &p_filter->output, &p_filter->input,
  111.                 sizeof(audio_sample_format_t) );
  112.         msg_Warn( p_filter, "input and output formats are not similar" );
  113.     }
  114.     if ( ! b_fit )
  115.     {
  116.         return VLC_EGENERIC;
  117.     }
  118.     p_filter->pf_do_work = DoWork;
  119.     p_filter->b_in_place = true;
  120.     /* Allocate structure */
  121.     p_sys = p_filter->p_sys = malloc( sizeof( aout_filter_sys_t ) );
  122.     p_sys->f_lowf = config_GetFloat( p_this, "param-eq-lowf");
  123.     p_sys->f_lowgain = config_GetFloat( p_this, "param-eq-lowgain");
  124.     p_sys->f_highf = config_GetFloat( p_this, "param-eq-highf");
  125.     p_sys->f_highgain = config_GetFloat( p_this, "param-eq-highgain");
  126.  
  127.     p_sys->f_f1 = config_GetFloat( p_this, "param-eq-f1");
  128.     p_sys->f_Q1 = config_GetFloat( p_this, "param-eq-q1");
  129.     p_sys->f_gain1 = config_GetFloat( p_this, "param-eq-gain1");
  130.  
  131.     p_sys->f_f2 = config_GetFloat( p_this, "param-eq-f2");
  132.     p_sys->f_Q2 = config_GetFloat( p_this, "param-eq-q2");
  133.     p_sys->f_gain2 = config_GetFloat( p_this, "param-eq-gain2");
  134.     p_sys->f_f3 = config_GetFloat( p_this, "param-eq-f3");
  135.     p_sys->f_Q3 = config_GetFloat( p_this, "param-eq-q3");
  136.     p_sys->f_gain3 = config_GetFloat( p_this, "param-eq-gain3");
  137.  
  138.     i_samplerate = p_filter->input.i_rate;
  139.     CalcPeakEQCoeffs(p_sys->f_f1, p_sys->f_Q1, p_sys->f_gain1,
  140.                      i_samplerate, p_sys->coeffs+0*5);
  141.     CalcPeakEQCoeffs(p_sys->f_f2, p_sys->f_Q2, p_sys->f_gain2,
  142.                      i_samplerate, p_sys->coeffs+1*5);
  143.     CalcPeakEQCoeffs(p_sys->f_f3, p_sys->f_Q3, p_sys->f_gain3,
  144.                      i_samplerate, p_sys->coeffs+2*5);
  145.     CalcShelfEQCoeffs(p_sys->f_lowf, 1, p_sys->f_lowgain, 0,
  146.                       i_samplerate, p_sys->coeffs+3*5);
  147.     CalcShelfEQCoeffs(p_sys->f_highf, 1, p_sys->f_highgain, 0,
  148.                       i_samplerate, p_sys->coeffs+4*5);
  149.     p_sys->p_state = (float*)calloc( p_filter->input.i_channels*5*4,
  150.                                      sizeof(float) );
  151.     return VLC_SUCCESS;
  152. }
  153. static void Close( vlc_object_t *p_this )
  154. {
  155.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  156.     free( p_filter->p_sys->p_state );
  157.     free( p_filter->p_sys );
  158. }
  159. /*****************************************************************************
  160.  * DoWork: process samples buffer
  161.  *****************************************************************************
  162.  *
  163.  *****************************************************************************/
  164. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  165.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  166. {
  167.     VLC_UNUSED(p_aout);
  168.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  169.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes;
  170.     ProcessEQ( (float*)p_in_buf->p_buffer, (float*)p_out_buf->p_buffer,
  171.                p_filter->p_sys->p_state,
  172.                p_filter->input.i_channels, p_in_buf->i_nb_samples,
  173.                p_filter->p_sys->coeffs, 5 );
  174. }
  175. /*
  176.  * Calculate direct form IIR coefficients for peaking EQ
  177.  * coeffs[0] = b0
  178.  * coeffs[1] = b1
  179.  * coeffs[2] = b2
  180.  * coeffs[3] = a1
  181.  * coeffs[4] = a2
  182.  *
  183.  * Equations taken from RBJ audio EQ cookbook
  184.  * (http://www.musicdsp.org/files/Audio-EQ-Cookbook.txt)
  185.  */
  186. static void CalcPeakEQCoeffs( float f0, float Q, float gainDB, float Fs,
  187.                               float *coeffs )
  188. {
  189.     float A;
  190.     float w0;
  191.     float alpha;
  192.     float b0, b1, b2;
  193.     float a0, a1, a2;
  194.     // Provide sane limits to avoid overflow
  195.     if (Q < 0.1f) Q = 0.1f;
  196.     if (Q > 100) Q = 100;
  197.     if (f0 > Fs/2*0.95f) f0 = Fs/2*0.95f;
  198.     if (gainDB < -40) gainDB = -40;
  199.     if (gainDB > 40) gainDB = 40;
  200.  
  201.     A = pow(10, gainDB/40);
  202.     w0 = 2*3.141593f*f0/Fs;
  203.     alpha = sin(w0)/(2*Q);
  204.  
  205.     b0 = 1 + alpha*A;
  206.     b1 = -2*cos(w0);
  207.     b2 = 1 - alpha*A;
  208.     a0 = 1 + alpha/A;
  209.     a1 = -2*cos(w0);
  210.     a2 = 1 - alpha/A;
  211.  
  212.     // Store values to coeffs and normalize by 1/a0
  213.     coeffs[0] = b0/a0;
  214.     coeffs[1] = b1/a0;
  215.     coeffs[2] = b2/a0;
  216.     coeffs[3] = a1/a0;
  217.     coeffs[4] = a2/a0;
  218. }
  219. /*
  220.  * Calculate direct form IIR coefficients for low/high shelf EQ
  221.  * coeffs[0] = b0
  222.  * coeffs[1] = b1
  223.  * coeffs[2] = b2
  224.  * coeffs[3] = a1
  225.  * coeffs[4] = a2
  226.  *
  227.  * Equations taken from RBJ audio EQ cookbook
  228.  * (http://www.musicdsp.org/files/Audio-EQ-Cookbook.txt)
  229.  */
  230. static void CalcShelfEQCoeffs( float f0, float slope, float gainDB, int high,
  231.                                float Fs, float *coeffs )
  232. {
  233.     float A;
  234.     float w0;
  235.     float alpha;
  236.     float b0, b1, b2;
  237.     float a0, a1, a2;
  238.     // Provide sane limits to avoid overflow
  239.     if (f0 > Fs/2*0.95f) f0 = Fs/2*0.95f;
  240.     if (gainDB < -40) gainDB = -40;
  241.     if (gainDB > 40) gainDB = 40;
  242.     A = pow(10, gainDB/40);
  243.     w0 = 2*3.141593f*f0/Fs;
  244.     alpha = sin(w0)/2 * sqrt( (A + 1/A)*(1/slope - 1) + 2 );
  245.     if (high)
  246.     {
  247.         b0 =    A*( (A+1) + (A-1)*cos(w0) + 2*sqrt(A)*alpha );
  248.         b1 = -2*A*( (A-1) + (A+1)*cos(w0) );
  249.         b2 =    A*( (A+1) + (A-1)*cos(w0) - 2*sqrt(A)*alpha );
  250.         a0 =        (A+1) - (A-1)*cos(w0) + 2*sqrt(A)*alpha;
  251.         a1 =    2*( (A-1) - (A+1)*cos(w0) );
  252.         a2 =        (A+1) - (A-1)*cos(w0) - 2*sqrt(A)*alpha;
  253.     }
  254.     else
  255.     {
  256.         b0 =    A*( (A+1) - (A-1)*cos(w0) + 2*sqrt(A)*alpha );
  257.         b1 =  2*A*( (A-1) - (A+1)*cos(w0));
  258.         b2 =    A*( (A+1) - (A-1)*cos(w0) - 2*sqrt(A)*alpha );
  259.         a0 =        (A+1) + (A-1)*cos(w0) + 2*sqrt(A)*alpha;
  260.         a1 =   -2*( (A-1) + (A+1)*cos(w0));
  261.         a2 =        (A+1) + (A-1)*cos(w0) - 2*sqrt(A)*alpha;
  262.     }
  263.     // Store values to coeffs and normalize by 1/a0
  264.     coeffs[0] = b0/a0;
  265.     coeffs[1] = b1/a0;
  266.     coeffs[2] = b2/a0;
  267.     coeffs[3] = a1/a0;
  268.     coeffs[4] = a2/a0;
  269. }
  270. /*
  271.   src is assumed to be interleaved
  272.   dest is assumed to be interleaved
  273.   size of state is 4*channels*eqCount
  274.   samples is not premultiplied by channels
  275.   size of coeffs is 5*eqCount
  276. */
  277. void ProcessEQ( float *src, float *dest, float *state,
  278.                 unsigned channels, unsigned samples, float *coeffs,
  279.                 unsigned eqCount )
  280. {
  281.     unsigned i, chn, eq;
  282.     float   b0, b1, b2, a1, a2;
  283.     float   x, y = 0;
  284.     float   *src1, *dest1;
  285.     float   *coeffs1, *state1;
  286.     src1 = src;
  287.     dest1 = dest;
  288.     for (i = 0; i < samples; i++)
  289.     {
  290.         state1 = state;
  291.         for (chn = 0; chn < channels; chn++)
  292.         {
  293.             coeffs1 = coeffs;
  294.             x = *src1++;
  295.             /* Direct form 1 IIRs */
  296.             for (eq = 0; eq < eqCount; eq++)
  297.             {
  298.                 b0 = coeffs1[0];
  299.                 b1 = coeffs1[1];
  300.                 b2 = coeffs1[2];
  301.                 a1 = coeffs1[3];
  302.                 a2 = coeffs1[4];
  303.                 coeffs1 += 5;
  304.                 y = x*b0 + state1[0]*b1 + state1[1]*b2 - state1[2]*a1 - state1[3]*a2;
  305.                 state1[1] = state1[0];
  306.                 state1[0] = x;
  307.                 state1[3] = state1[2];
  308.                 state1[2] = y;
  309.                 x = y;
  310.                 state1 += 4;
  311.             }
  312.             *dest1++ = y;
  313.         }
  314.     }
  315. }