Adding some additional logging

This commit is contained in:
Jonathan Thomas
2021-12-06 15:47:32 -06:00
parent 09bcf2ab15
commit f3e7208df6
3 changed files with 6 additions and 13 deletions

View File

@@ -161,7 +161,6 @@ juce::AudioBuffer<float>* AudioReaderSource::reverse_buffer(juce::AudioBuffer<fl
// Get the next block of audio samples
void AudioReaderSource::getNextAudioBlock(const juce::AudioSourceChannelInfo& info)
{
std::cout << "R: getNext " << info.numSamples << std::endl;
int buffer_samples = buffer->getNumSamples();
int buffer_channels = buffer->getNumChannels();
@@ -225,9 +224,7 @@ void AudioReaderSource::getNextAudioBlock(const juce::AudioSourceChannelInfo& in
}
// Prepare to play this audio source
void AudioReaderSource::prepareToPlay(int, double) {
std::cout << "R: prepare" << std::endl;
}
void AudioReaderSource::prepareToPlay(int, double) {}
// Release all resources
void AudioReaderSource::releaseResources() { }