Exemplo n.º 1
0
void Biquad::setPeakGain( double peakGainDB )
{
    this->G = peakGainDB;
    calcBiquad();
}
Exemplo n.º 2
0
void Biquad::setQ( double Q )
{
    this->Q = Q;
    calcBiquad();
}
Exemplo n.º 3
0
void Biquad::setFc( double Fc )
{
    this->Fc = Fc;
    calcBiquad();
}
Exemplo n.º 4
0
void Biquad::setType( int type )
{
    this->type = type;
    calcBiquad();
}
Exemplo n.º 5
0
void Biquad_multiChan::setPeakGain(double peakGainDB) {
    this->peakGain = peakGainDB;
    calcBiquad();
}
Exemplo n.º 6
0
void Biquad_multiChan::setFc(double Fc) {
    this->Fc = Fc;
    calcBiquad();
}
Exemplo n.º 7
0
void Biquad_multiChan::setQ(double Q) {
    this->Q = Q;
    calcBiquad();
}
Exemplo n.º 8
0
void Biquad_multiChan::setType(int type) {
    this->type = type;
    calcBiquad();
}