Ddsp
Ddsp copied to clipboard
Implement buffers in AudioEffect!T
Currently all modules in this library use getNextSample(float input) which is highly inefficient since it means that each sample is copied when being processed.
It would be much more efficient to utilize buffers in a call like process(T** inputs T** outputs, int numFrames)