pub fn process_buffer<Processor, BufferType>(
    processor: &mut Processor,
    data: &mut BufferType
)where
    Processor: SimpleAudioProcessor,
    <Processor as SimpleAudioProcessor>::SampleType: Copy,
    BufferType: AudioBuffer<SampleType = Processor::SampleType>,
Expand description

Process a buffer of samples with a SimpleAudioProcessor