Ddsp icon indicating copy to clipboard operation
Ddsp copied to clipboard

Implement buffers in AudioEffect!T

Open abaga129 opened this issue 3 years ago • 0 comments

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)

abaga129 avatar Oct 13 '22 03:10 abaga129