You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I make a new ofxEasyFft instance and call .setup() then all other audio running on my pc stop working.
Code:
shProcessFFT = new ProcessFFT();
shProcessFFT->setup();
When taking a closer look in the source code I find that it happens specifically on this line:
audio ->openStream( (nOutputChannels>0)?&outputParameters:NULL, (nInputChannels>0)?&inputParameters:NULL, RTAUDIO_FLOAT32,
sampleRate, &bufferFrames, &rtAudioCallback, this, &options);
Line 128, ofRtAudioSoundStream.cpp
I need audio to work in other applications while running my code. Does anyone know why this is happening and/or how to stop it from happening?
The text was updated successfully, but these errors were encountered:
When I make a new ofxEasyFft instance and call .setup() then all other audio running on my pc stop working.
Code:
shProcessFFT = new ProcessFFT();
shProcessFFT->setup();
When taking a closer look in the source code I find that it happens specifically on this line:
audio ->openStream( (nOutputChannels>0)?&outputParameters:NULL, (nInputChannels>0)?&inputParameters:NULL, RTAUDIO_FLOAT32,
sampleRate, &bufferFrames, &rtAudioCallback, this, &options);
Line 128, ofRtAudioSoundStream.cpp
I need audio to work in other applications while running my code. Does anyone know why this is happening and/or how to stop it from happening?
The text was updated successfully, but these errors were encountered: