I am working on a module and bascially i would like to add a eq that bootst the frequency at 300 (similar to the stock CA 3 band equaliser). I have spend 2 evenings on this but for some reason my approach doesn't work.
I am using a biquadfilter with a peakingeq as filtertype. freq set to 300,0 and gain is set by a knob with a value of 1 to 12. I presume 12 is the dB gain you are adding?
(from memory...

--
BiQuadFilter = eq new BiQuadFilter(filtertype.peakingeq, 300.0, 0, 0);
--
eq.SetFrequency(300.0);
eq.SetdbGain(boostKnob.GetValue());
signalOut = eq.ProssesSample(signalIN);
--
When I start turning the knob, it doesn't boost anything. The input signal seems unprocessed.
Any help is very very much appreciated!
Thanks in advance!
-Matt