Skip to content

Commit 71d8239

Browse files
committed
commented out debug printing
1 parent 6c394fe commit 71d8239

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ofxSoundObject.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,14 @@ ofxSoundObject* ofxSoundObject::getSignalDestinationObject(){
116116
}
117117
void ofxSoundObject::printAudioOut(){
118118
if(bPrintAudioOut){
119-
std::cout << "ofxSoundObject::audioOut " << getName() << " <---- " << ((inputObject == nullptr)?"NULL":inputObject->getName()) << "\n";// << " bypassed: " << std::boolalpha << isBypassed() << "\n";
119+
std::cout << "ofxSoundObject::audioOut " << getName() << " <---- " << ((inputObject == nullptr)?"NULL":inputObject->getName()) << " numChannels: " << getBuffer().getNumChannels() << "\n";// << " bypassed: " << std::boolalpha << isBypassed() << "\n";
120120
}
121121
}
122122
//--------------------------------------------------------------
123123
// this pulls the audio through from earlier links in the chain
124124
void ofxSoundObject::audioOut(ofSoundBuffer &output) {
125125
_tickCount = output.getTickCount();
126-
printAudioOut();
126+
// printAudioOut();
127127
ofxSoundUtils::checkBuffers(output, workingBuffer);
128128
if(inputObject!=nullptr) {
129129
if(isBypassed()){

0 commit comments

Comments
 (0)