52 BiquadCoeffT(
const Settings& settings) { setup(settings); }
64 void setType(Type type) {
68 void setQ(sample_t Q) {
72 void setFc(sample_t Fc) {
73 this->Fc = Fc/this->Fs;
76 void setPeakGain(sample_t peakGainDB) {
77 this->peakGain = peakGainDB;
81 Type getType() {
return type; }
82 sample_t getQ() {
return Q; }
83 sample_t getFc() {
return Fc; }
84 sample_t getPeakGain() {
return peakGain; }
86 sample_t a0, a1, a2, b1, b2;
88 sample_t Fc, Q, peakGain;