Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

copy in this reverb over from fishpolice branch #58

Open
kimon-satan opened this issue Mar 29, 2017 · 0 comments
Open

copy in this reverb over from fishpolice branch #58

kimon-satan opened this issue Mar 29, 2017 · 0 comments

Comments

@kimon-satan
Copy link

`double maxiReverbFilters::lpcombfb(double input, double size, double fb, double cutoff)
{
// used for freeverb emulation
// low pass between delay output + feedback
delay_size = size;
output = input + (fb * mf.lopass(delay_line[delay_index],(1.0-cutoff)));
delay_line[delay_index] = output;
delay_index != delay_size - 1 ? delay_index++ : delay_index = 0;
return output;
return 0.0;

}`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant