void AddProcessor( AudioProcessor ap )

robot_2Generated
code_blocksInput

Description

The AddProcessor method allows you to add an AudioProcessor to the Mixer. This method is used to enhance or modify the audio processing capabilities of the mixer by adding custom audio processing logic.

Usage

To use the AddProcessor method, you need to have an instance of AudioProcessor that you want to add to the mixer. Call the method on an instance of Mixer and pass the AudioProcessor as a parameter.

Example

// Create an instance of AudioProcessor
AudioProcessor myProcessor = new AudioProcessor();

// Get an instance of Mixer
Mixer myMixer = new Mixer();

// Add the processor to the mixer
myMixer.AddProcessor(myProcessor);