mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Change variable names for consistency
This commit is contained in:
@@ -350,7 +350,7 @@ intptr_t PluginBridge::host_callback(AEffect* effect,
|
|||||||
void* data,
|
void* data,
|
||||||
float option) {
|
float option) {
|
||||||
HostCallbackDataConverter converter(effect, time_info);
|
HostCallbackDataConverter converter(effect, time_info);
|
||||||
return send_event(vst_host_callback, host_callback_semaphore, converter,
|
return send_event(vst_host_callback, host_callback_mutex, converter,
|
||||||
std::nullopt, opcode, index, value, data, option);
|
std::nullopt, opcode, index, value, data, option);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ class PluginBridge {
|
|||||||
* function being called by two threads at once. See `send_event()` for more
|
* function being called by two threads at once. See `send_event()` for more
|
||||||
* information.
|
* information.
|
||||||
*/
|
*/
|
||||||
std::mutex host_callback_semaphore;
|
std::mutex host_callback_mutex;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A scratch buffer for sending and receiving data during `process` and
|
* A scratch buffer for sending and receiving data during `process` and
|
||||||
|
|||||||
Reference in New Issue
Block a user