Process offline audio from the GUI thread

Because T-RackS 5 won't have it any other way.
This commit is contained in:
Robbert van der Helm
2022-01-19 18:18:20 +01:00
parent c7d4452cb9
commit 1b8248d672
3 changed files with 37 additions and 13 deletions
+2 -2
View File
@@ -249,8 +249,8 @@ struct Vst3PluginInstance {
/**
* Whether the plugin instance is currently in offline processing mode or
* not. Needed as a HACK for IK Multimedia's T-RackS 5 because those plugins
* will deadlock if they receive a timer proc on the Win32 message loop
* while doing offline processing.
* will deadlock if they don't process audio from the GUI thread while doing
* offline processing.
*/
bool is_offline_processing = false;
};