Funny biquad notch filter output? |
|
Issue description
Try the following using hoch.github.io/canopy:
var osc = new OscillatorNode(context);
var f = new BiquadFilterNode(context, {type: "notch"});
osc.frequency.setValueAtTime(261.6, 0.0);
osc.connect(f).connect(context.destination);
osc.start();
osc.stop(0.06);
There's a funny sudden jump in output at time 0.06. That seems wrong, but I'm not sure.
|
|
►
Sign in to add a comment |
|
Comment 1 by rtoy@chromium.org
, May 5 2017