mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-06 19:40:10 +02:00
Reorder params::flush in logger
Since this has moved to the audio thread socket.
This commit is contained in:
@@ -217,15 +217,6 @@ bool ClapLogger::log_request(
|
||||
});
|
||||
}
|
||||
|
||||
bool ClapLogger::log_request(bool is_host_plugin,
|
||||
const clap::ext::params::plugin::Flush& request) {
|
||||
return log_request_base(is_host_plugin, [&](auto& message) {
|
||||
// TODO: Add event counts
|
||||
message << request.instance_id
|
||||
<< ": clap_plugin_params::flush(*in, *out)";
|
||||
});
|
||||
}
|
||||
|
||||
bool ClapLogger::log_request(bool is_host_plugin,
|
||||
const clap::plugin::StartProcessing& request) {
|
||||
return log_request_base(is_host_plugin, [&](auto& message) {
|
||||
@@ -247,6 +238,15 @@ bool ClapLogger::log_request(bool is_host_plugin,
|
||||
});
|
||||
}
|
||||
|
||||
bool ClapLogger::log_request(bool is_host_plugin,
|
||||
const clap::ext::params::plugin::Flush& request) {
|
||||
return log_request_base(is_host_plugin, [&](auto& message) {
|
||||
// TODO: Add event counts
|
||||
message << request.instance_id
|
||||
<< ": clap_plugin_params::flush(*in, *out)";
|
||||
});
|
||||
}
|
||||
|
||||
bool ClapLogger::log_request(bool is_host_plugin,
|
||||
const clap::ext::tail::plugin::Get& request) {
|
||||
return log_request_base(is_host_plugin, [&](auto& message) {
|
||||
|
||||
@@ -95,12 +95,12 @@ class ClapLogger {
|
||||
const clap::ext::params::plugin::ValueToText&);
|
||||
bool log_request(bool is_host_plugin,
|
||||
const clap::ext::params::plugin::TextToValue&);
|
||||
bool log_request(bool is_host_plugin,
|
||||
const clap::ext::params::plugin::Flush&);
|
||||
|
||||
bool log_request(bool is_host_plugin, const clap::plugin::StartProcessing&);
|
||||
bool log_request(bool is_host_plugin, const clap::plugin::StopProcessing&);
|
||||
bool log_request(bool is_host_plugin, const clap::plugin::Reset&);
|
||||
bool log_request(bool is_host_plugin,
|
||||
const clap::ext::params::plugin::Flush&);
|
||||
bool log_request(bool is_host_plugin, const clap::ext::tail::plugin::Get&);
|
||||
|
||||
bool log_request(bool is_host_plugin, const WantsConfiguration&);
|
||||
|
||||
Reference in New Issue
Block a user