Ignore REAPER host function API requests

Apparently there is a plugin that uses these.
This commit is contained in:
Robbert van der Helm
2021-06-12 17:22:47 +02:00
parent 9ae0e8ca38
commit 9c439b62e3
5 changed files with 33 additions and 0 deletions
+14
View File
@@ -147,6 +147,20 @@ Vst2PluginBridge::Vst2PluginBridge(audioMasterCallback host_callback)
.value_payload = std::nullopt};
}
} break;
case audioMasterDeadBeef:
logger.log("");
logger.log(
" The plugin wants to use REAPER's host vendor "
"extensions");
logger.log(
" which currently aren't supported by yabridge.");
logger.log(" Ignoring the request.");
logger.log("");
return Vst2EventResult{.return_value = 0,
.payload = nullptr,
.value_payload = std::nullopt};
break;
}
return passthrough_event(&plugin, host_callback_function,