File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,14 +116,14 @@ ofxSoundObject* ofxSoundObject::getSignalDestinationObject(){
116116}
117117void 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
124124void ofxSoundObject::audioOut (ofSoundBuffer &output) {
125125 _tickCount = output.getTickCount ();
126- printAudioOut ();
126+ // printAudioOut();
127127 ofxSoundUtils::checkBuffers (output, workingBuffer);
128128 if (inputObject!=nullptr ) {
129129 if (isBypassed ()){
You can’t perform that action at this time.
0 commit comments