JUCE
|
An AudioSource that mixes together the output of a set of other AudioSources. More...
Public Member Functions | |
MixerAudioSource () | |
Creates a MixerAudioSource. More... | |
~MixerAudioSource () override | |
Destructor. More... | |
void | addInputSource (AudioSource *newInput, bool deleteWhenRemoved) |
Adds an input source to the mixer. More... | |
void | removeInputSource (AudioSource *input) |
Removes an input source. More... | |
void | removeAllInputs () |
Removes all the input sources. More... | |
void | prepareToPlay (int samplesPerBlockExpected, double sampleRate) override |
Implementation of the AudioSource method. More... | |
void | releaseResources () override |
Implementation of the AudioSource method. More... | |
void | getNextAudioBlock (const AudioSourceChannelInfo &) override |
Implementation of the AudioSource method. More... | |
Public Member Functions inherited from AudioSource | |
virtual | ~AudioSource ()=default |
Destructor. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from AudioSource | |
AudioSource ()=default | |
Creates an AudioSource. More... | |
An AudioSource that mixes together the output of a set of other AudioSources.
Input sources can be added and removed while the mixer is running as long as their prepareToPlay() and releaseResources() methods are called before and after adding them to the mixer.
MixerAudioSource::MixerAudioSource | ( | ) |
Creates a MixerAudioSource.
|
override |
Destructor.
void MixerAudioSource::addInputSource | ( | AudioSource * | newInput, |
bool | deleteWhenRemoved | ||
) |
Adds an input source to the mixer.
If the mixer is running you'll need to make sure that the input source is ready to play by calling its prepareToPlay() method before adding it. If the mixer is stopped, then its input sources will be automatically prepared when the mixer's prepareToPlay() method is called.
newInput | the source to add to the mixer |
deleteWhenRemoved | if true, then this source will be deleted when no longer needed by the mixer. |
void MixerAudioSource::removeInputSource | ( | AudioSource * | input | ) |
Removes an input source.
If the source was added by calling addInputSource() with the deleteWhenRemoved flag set, it will be deleted by this method.
void MixerAudioSource::removeAllInputs | ( | ) |
Removes all the input sources.
Any sources which were added by calling addInputSource() with the deleteWhenRemoved flag set will be deleted by this method.
|
overridevirtual |
Implementation of the AudioSource method.
This will call prepareToPlay() on all its input sources.
Implements AudioSource.
|
overridevirtual |
Implementation of the AudioSource method.
This will call releaseResources() on all its input sources.
Implements AudioSource.
|
overridevirtual |
Implementation of the AudioSource method.
Implements AudioSource.