mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 04:20:13 +02:00
Properly handle effGet{Input,Output}Properties
Apparently the plugin needs the actual contents of the struct for this to work.
This commit is contained in:
@@ -27,6 +27,8 @@
|
||||
|
||||
#include <variant>
|
||||
|
||||
#include "vst24.h"
|
||||
|
||||
// These constants are limits used by bitsery
|
||||
|
||||
/**
|
||||
@@ -83,6 +85,11 @@ void serialize(S& s, AEffect& plugin) {
|
||||
s.value4b(plugin.version);
|
||||
}
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s, VstIOProperties& props) {
|
||||
s.container1b(props.data);
|
||||
}
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s, VstRect& rect) {
|
||||
s.value2b(rect.top);
|
||||
@@ -212,6 +219,7 @@ using EventPayload = std::variant<std::nullptr_t,
|
||||
AEffect,
|
||||
DynamicVstEvents,
|
||||
WantsChunkBuffer,
|
||||
VstIOProperties,
|
||||
WantsVstRect,
|
||||
WantsVstTimeInfo,
|
||||
WantsString>;
|
||||
@@ -233,6 +241,7 @@ void serialize(S& s, EventPayload& payload) {
|
||||
events.events, max_midi_events,
|
||||
[](S& s, VstEvent& event) { s.container1b(event.dump); });
|
||||
},
|
||||
[](S& s, VstIOProperties& props) { s.object(props); },
|
||||
[](S&, WantsChunkBuffer&) {}, [](S&, WantsVstRect&) {},
|
||||
[](S&, WantsVstTimeInfo&) {}, [](S&, WantsString&) {}});
|
||||
}
|
||||
@@ -289,8 +298,12 @@ struct Event {
|
||||
* `audioMasterIOChanged`.
|
||||
* - An X11 window pointer for the editor window.
|
||||
*/
|
||||
using EventResposnePayload =
|
||||
std::variant<std::monostate, std::string, AEffect, VstRect, VstTimeInfo>;
|
||||
using EventResposnePayload = std::variant<std::monostate,
|
||||
std::string,
|
||||
AEffect,
|
||||
VstIOProperties,
|
||||
VstRect,
|
||||
VstTimeInfo>;
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s, EventResposnePayload& payload) {
|
||||
@@ -304,6 +317,7 @@ void serialize(S& s, EventResposnePayload& payload) {
|
||||
s.text1b(string, binary_buffer_size);
|
||||
},
|
||||
[](S& s, AEffect& effect) { s.object(effect); },
|
||||
[](S& s, VstIOProperties& props) { s.object(props); },
|
||||
[](S& s, VstRect& rect) { s.object(rect); },
|
||||
[](S& s, VstTimeInfo& time_info) { s.object(time_info); }});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user