ref: 2a8488bfe0f4529017d7fcfd2bef1ad5d306562b
dir: /src/biquad.h/
/*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, write to the Free Software
* Foundation, Fifth Floor, 51 Franklin Street, Boston, MA 02111-1301,
* USA.
*/
/* Biquad filter common functions (c) 2006 robs@users.sourceforge.net */
#ifndef biquad_included
#define biquad_included
#include <math.h>
#include "st_i.h"
/* Private data for the biquad filter effects */
typedef struct biquad
{
double gain;
double fc; /* Centre/corner/cutoff frequency */
union {double q, bandwidth, slope;} width; /* Depending on filter type */
bool dcNormalise; /* A treble filter should normalise at DC */
double b2, b1, b0; /* Filter coefficients */
double a2, a1, a0; /* Filter coefficients */
st_sample_t i1, i2; /* Filter memory */
double o1, o2; /* Filter memory */
} * biquad_t;
int st_biquad_start(eff_t effp, char const * width_name);
int st_biquad_flow(eff_t effp, const st_sample_t *ibuf, st_sample_t *obuf,
st_size_t *isamp, st_size_t *osamp);
assert_static(sizeof(struct biquad) <= ST_MAX_EFFECT_PRIVSIZE,
/* else */ biquad_PRIVSIZE_too_big);
#endif