Get the next read position of this source
| 89 | |
| 90 | // Get the next read position of this source |
| 91 | juce::int64 AudioBufferSource::getNextReadPosition() const |
| 92 | { |
| 93 | // return the next read position |
| 94 | return position; |
| 95 | } |
| 96 | |
| 97 | // Get the total length (in samples) of this audio source |
| 98 | juce::int64 AudioBufferSource::getTotalLength() const |
nothing calls this directly
no outgoing calls
no test coverage detected