mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-16 05:33:07 +02:00
Ignore REAPER host function API requests
Apparently there is a plugin that uses these.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user