Skip to content

Commit

Permalink
Debug in AudioReaderSource for Win 11 debugging #2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoomph committed Dec 9, 2024
1 parent d1d9896 commit 339a491
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AudioReaderSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "AudioReaderSource.h"
#include "Exceptions.h"
#include "Frame.h"
#include "ZmqLogger.h"


using namespace std;
Expand Down Expand Up @@ -43,7 +44,7 @@ void AudioReaderSource::getNextAudioBlock(const juce::AudioSourceChannelInfo& in
}

while (remaining_samples > 0) {
std::cout << "AudioReaderSource::getNextAudioBlock: #" << remaining_samples << std::endl;
ZmqLogger::Instance()->AppendDebugMethod("AudioReaderSource::getNextAudioBlock", "remaining_samples", remaining_samples);

try {
// Get current frame object
Expand Down

0 comments on commit 339a491

Please sign in to comment.