mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Add todos for logging IAtributeList keys
This commit is contained in:
@@ -30,6 +30,7 @@ std::string format_bstream(const YaBStream& stream) {
|
|||||||
std::ostringstream formatted;
|
std::ostringstream formatted;
|
||||||
formatted << "<IBStream* ";
|
formatted << "<IBStream* ";
|
||||||
if (stream.supports_stream_attributes) {
|
if (stream.supports_stream_attributes) {
|
||||||
|
// TODO: Log the keys for the stored values
|
||||||
formatted << "with meta data ";
|
formatted << "with meta data ";
|
||||||
}
|
}
|
||||||
if (stream.file_name) {
|
if (stream.file_name) {
|
||||||
@@ -369,9 +370,10 @@ bool Vst3Logger::log_request(
|
|||||||
bool is_host_vst,
|
bool is_host_vst,
|
||||||
const YaInfoListener::SetChannelContextInfos& request) {
|
const YaInfoListener::SetChannelContextInfos& request) {
|
||||||
return log_request_base(is_host_vst, [&](auto& message) {
|
return log_request_base(is_host_vst, [&](auto& message) {
|
||||||
|
// TODO: Log the keys for the values provided by the host
|
||||||
message << request.instance_id
|
message << request.instance_id
|
||||||
<< ": IInfoListener::setChannelContextInfos(list = "
|
<< ": IInfoListener::setChannelContextInfos(list = "
|
||||||
"<IAtributeList*>)";
|
"<IAttributeList*>)";
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,8 @@
|
|||||||
|
|
||||||
#include "attribute-list.h"
|
#include "attribute-list.h"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
#include <pluginterfaces/vst/vstpresetkeys.h>
|
#include <pluginterfaces/vst/vstpresetkeys.h>
|
||||||
|
|
||||||
#include "pluginterfaces/vst/ivstchannelcontextinfo.h"
|
#include "pluginterfaces/vst/ivstchannelcontextinfo.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user