Get the total length (in samples) of this audio source
| 122 | |
| 123 | // Get the total length (in samples) of this audio source |
| 124 | juce::int64 AudioReaderSource::getTotalLength() const |
| 125 | { |
| 126 | // Get the length |
| 127 | if (reader) |
| 128 | return reader->info.sample_rate * reader->info.duration; |
| 129 | else |
| 130 | return 0; |
| 131 | } |
nothing calls this directly
no outgoing calls
no test coverage detected