| 16 | { |
| 17 | |
| 18 | Biquad::Biquad() |
| 19 | { |
| 20 | // Initialize as pass-thru (straight-wire, no filter effect) |
| 21 | setNormalizedCoefficients(1, 0, 0, 1, 0, 0); |
| 22 | reset(); // clear filter memory |
| 23 | } |
| 24 | |
| 25 | Biquad::~Biquad() { } |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected