Get the total length (in samples) of this audio source
| 96 | |
| 97 | // Get the total length (in samples) of this audio source |
| 98 | juce::int64 AudioBufferSource::getTotalLength() const |
| 99 | { |
| 100 | // Get the length |
| 101 | return buffer->getNumSamples(); |
| 102 | } |
| 103 | |
| 104 | // Determines if this audio source should repeat when it reaches the end |
| 105 | bool AudioBufferSource::isLooping() const |
nothing calls this directly
no outgoing calls
no test coverage detected