JUCE
|
Wrapper class to continuously stream audio from an audio source to an AudioIODevice. More...
Public Member Functions | |
AudioSourcePlayer () | |
Creates an empty AudioSourcePlayer. More... | |
~AudioSourcePlayer () override | |
Destructor. More... | |
void | setSource (AudioSource *newSource) |
Changes the current audio source to play from. More... | |
AudioSource * | getCurrentSource () const noexcept |
Returns the source that's playing. More... | |
void | setGain (float newGain) noexcept |
Sets a gain to apply to the audio data. More... | |
float | getGain () const noexcept |
Returns the current gain. More... | |
void | audioDeviceIOCallback (const float **inputChannelData, int totalNumInputChannels, float **outputChannelData, int totalNumOutputChannels, int numSamples) override |
Implementation of the AudioIODeviceCallback method. More... | |
void | audioDeviceAboutToStart (AudioIODevice *device) override |
Implementation of the AudioIODeviceCallback method. More... | |
void | audioDeviceStopped () override |
Implementation of the AudioIODeviceCallback method. More... | |
void | prepareToPlay (double sampleRate, int blockSize) |
An alternative method for initialising the source without an AudioIODevice. More... | |
Public Member Functions inherited from AudioIODeviceCallback | |
virtual | ~AudioIODeviceCallback ()=default |
Destructor. More... | |
virtual void | audioDeviceError (const String &errorMessage) |
This can be overridden to be told if the device generates an error while operating. More... | |
Wrapper class to continuously stream audio from an audio source to an AudioIODevice.
This object acts as an AudioIODeviceCallback, so can be attached to an output device, and will stream audio from an AudioSource.
AudioSourcePlayer::AudioSourcePlayer | ( | ) |
Creates an empty AudioSourcePlayer.
|
override |
Destructor.
Make sure this object isn't still being used by an AudioIODevice before deleting it!
void AudioSourcePlayer::setSource | ( | AudioSource * | newSource | ) |
Changes the current audio source to play from.
If the source passed in is already being used, this method will do nothing. If the source is not null, its prepareToPlay() method will be called before it starts being used for playback.
If there's another source currently playing, its releaseResources() method will be called after it has been swapped for the new one.
newSource | the new source to use - this will NOT be deleted by this object when no longer needed, so it's the caller's responsibility to manage it. |
|
noexcept |
Returns the source that's playing.
May return nullptr if there's no source.
|
noexcept |
Sets a gain to apply to the audio data.
|
noexcept |
Returns the current gain.
References AudioIODeviceCallback::audioDeviceAboutToStart(), AudioIODeviceCallback::audioDeviceIOCallback(), AudioIODeviceCallback::audioDeviceStopped(), and JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR.
|
overridevirtual |
Implementation of the AudioIODeviceCallback method.
Implements AudioIODeviceCallback.
|
overridevirtual |
Implementation of the AudioIODeviceCallback method.
Implements AudioIODeviceCallback.
|
overridevirtual |
Implementation of the AudioIODeviceCallback method.
Implements AudioIODeviceCallback.
void AudioSourcePlayer::prepareToPlay | ( | double | sampleRate, |
int | blockSize | ||
) |
An alternative method for initialising the source without an AudioIODevice.