fft-convolver
Port of HiFi-LoFi/FFTConvolver to pure rust.
- Highly efficient convolution of audio data (e.g. for usage in real-time convolution reverbs etc.).
- Partitioned convolution algorithm (using uniform block sizes).
Example
use FFTConvolver;
let mut impulse_response = vec!;
impulse_response = 1.;
let mut convolver = default;
convolver.init;
let input = vec!;
let mut output = vec!;
convolver.process;