|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Used by AudioSource::getNextAudioBlock(). More...
#include "juce_AudioSource.h"
Public Member Functions | |
| AudioSourceChannelInfo ()=default | |
| Creates an uninitialised AudioSourceChannelInfo. | |
| AudioSourceChannelInfo (AudioBuffer< float > *bufferToUse, int startSampleOffset, int numSamplesToUse) noexcept | |
| Creates an AudioSourceChannelInfo. | |
| AudioSourceChannelInfo (AudioBuffer< float > &bufferToUse) noexcept | |
| Creates an AudioSourceChannelInfo that uses the whole of a buffer. | |
| void | clearActiveBufferRegion () const |
| Convenient method to clear the buffer if the source is not producing any data. | |
Public Attributes | |
| AudioBuffer< float > * | buffer |
| The destination buffer to fill with audio data. | |
| int | startSample |
| The first sample in the buffer from which the callback is expected to write data. | |
| int | numSamples |
| The number of samples in the buffer which the callback is expected to fill with data. | |
Used by AudioSource::getNextAudioBlock().
@tags{Audio}
Definition at line 32 of file juce_AudioSource.h.
|
noexcept |
Creates an AudioSourceChannelInfo.
Definition at line 38 of file juce_AudioSource.h.
|
explicitnoexcept |
Creates an AudioSourceChannelInfo that uses the whole of a buffer.
Note that the buffer provided must not be deleted while the AudioSourceChannelInfo is still using it.
Definition at line 50 of file juce_AudioSource.h.
| void juce::AudioSourceChannelInfo::clearActiveBufferRegion | ( | ) | const |
Convenient method to clear the buffer if the source is not producing any data.
Definition at line 84 of file juce_AudioSource.h.
| AudioBuffer<float>* juce::AudioSourceChannelInfo::buffer |
The destination buffer to fill with audio data.
When the AudioSource::getNextAudioBlock() method is called, the active section of this buffer should be filled with whatever output the source produces.
Only the samples specified by the startSample and numSamples members of this structure should be affected by the call.
The contents of the buffer when it is passed to the AudioSource::getNextAudioBlock() method can be treated as the input if the source is performing some kind of filter operation, but should be cleared if this is not the case - the clearActiveBufferRegion() is a handy way of doing this.
The number of channels in the buffer could be anything, so the AudioSource must cope with this in whatever way is appropriate for its function.
Definition at line 73 of file juce_AudioSource.h.
| int juce::AudioSourceChannelInfo::numSamples |
The number of samples in the buffer which the callback is expected to fill with data.
Definition at line 81 of file juce_AudioSource.h.
| int juce::AudioSourceChannelInfo::startSample |
The first sample in the buffer from which the callback is expected to write data.
Definition at line 77 of file juce_AudioSource.h.