lpf.SetFrequency(15000 / hw.AudioSampleRate()); #7
IC-Alchemy
started this conversation in
General
Replies: 2 comments 1 reply
|
The DaisySP implementation is a bit confusing, but I seem to recall the input to From inline void SetFrequency(float freq)
{
// Clip coefficient to about 100.
freq = freq < 0.497f ? freq : 0.497f;
g_ = tanf(PI_F * freq);
gi_ = 1.f / (1.f + g_);
}So, the valid range for |
1 reply
|
Also, I should mention that ModDelay is the only effect in the repo that isn't complete/tested; it's there by accident, actually. Sorry about that! |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
In ModDelay
I think you meant:
All reactions