pub trait AudioProcessor: Send { // Required method fn process(&mut self, sample: f32) -> f32; }
Processes a single audio sample and returns the processed result.
sample
f32
The processed audio sample.