You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: