Hi Adam,
I'm trying to connect the inputs from an instance of ofxAudioUnitInput set to a multichannel device to multiple taps. The goal is to have the samples from each live input in realtime.
When i try this:
input.connectTo(*taps[i], 0, i);
I get an error: No matching member function for call to 'connectTo'
However this is the only member function:
ofxAudioUnit& connectTo(ofxAudioUnit &otherUnit, int destinationBus = 0, int sourceBus = 0); using ofxAudioUnit::connectTo; // for connectTo(ofxAudioUnitTap&)
So how would I go about connecting my ofxAudioUnitInput to multiple ofxAudioUnitTaps?
Hi Adam,
I'm trying to connect the inputs from an instance of ofxAudioUnitInput set to a multichannel device to multiple taps. The goal is to have the samples from each live input in realtime.
When i try this:
input.connectTo(*taps[i], 0, i);I get an error: No matching member function for call to 'connectTo'
However this is the only member function:
ofxAudioUnit& connectTo(ofxAudioUnit &otherUnit, int destinationBus = 0, int sourceBus = 0); using ofxAudioUnit::connectTo; // for connectTo(ofxAudioUnitTap&)So how would I go about connecting my ofxAudioUnitInput to multiple ofxAudioUnitTaps?