13
0

portaudio connect & graph-changed callbacks (untested)

This commit is contained in:
Robin Gareus 2015-12-08 00:36:09 +01:00
parent bbdd25205d
commit 8781004ca2

View File

@ -616,6 +616,9 @@ PortAudioBackend::portaudio_callback(const void* input,
status_flags)) { status_flags)) {
return paAbort; return paAbort;
} }
process_port_connection_changes();
return paContinue; return paContinue;
} }
@ -838,6 +841,8 @@ PortAudioBackend::freewheel_process_thread()
if (!blocking_process_freewheel()) { if (!blocking_process_freewheel()) {
break; break;
} }
process_port_connection_changes();
} }
pthread_mutex_unlock (&_freewheel_mutex); pthread_mutex_unlock (&_freewheel_mutex);