| Parameter | Description |
|---|---|
| context | The RealtimeContext associated with this call. Use this to process any nested ProcessorInstances or query/return data. |
| inputBuffer | The buffer containing the incoming audio your effect will read from. |
| outputBuffer | The buffer your effect will write its processing result into. |
| args | Additional arguments. |
void A Result struct describing the outcome of the processing.
Called when you're asked to process the audio in inputBuffer into outputBuffer.
Unlike a generator, an effect both consumes audio (from inputBuffer) and produces audio
(into outputBuffer). The two buffers are guaranteed to have matching
ChannelBuffer.channelCount and ChannelBuffer.frameCount.
Additional resources: RealtimeContext