Rename CLAP audio thread sockets

So they're specifically for host->plugin control messages. We'll need
separate sockets for callbacks.
This commit is contained in:
Robbert van der Helm
2022-09-25 16:17:36 +02:00
parent f3e41d19ef
commit da3386494f
2 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ class ClapPluginBridge : PluginBridge<ClapSockets<std::jthread>> {
*/
template <typename T>
typename T::Response send_audio_thread_message(const T& object) {
return sockets_.send_audio_thread_message(
return sockets_.send_audio_thread_control_message(
object, std::pair<ClapLogger&, bool>(logger_, true));
}