// Comb filter implementation // // Written by Jezar at Dreampoint, June 2000 // http://www.dreampoint.co.uk // This code is public domain #include "comb.hpp" comb::comb() { filterstore = 0; bufidx = 0; } void comb::setbuffer(float *buf, int size) { buffer = buf; bufsize = size; } void comb::mute() { for (int i=0; i