Implement effSetChunk

This commit is contained in:
Robbert van der Helm
2020-03-10 12:57:53 +01:00
parent e89ddfe7b1
commit 54966a36f2
3 changed files with 13 additions and 12 deletions
-7
View File
@@ -17,13 +17,6 @@ There are a few things that should be done before making this public, including:
thing.
- Fix `processReplacing` forwarding.
- Implement GUIs.
- Chunks. For `effSetChunk` we can now just use the strings. For `effGetChunk`
we need to find a clean way to 1. make the returned string exactly `n` bytes
long, where `n` is the value returned by the VST plugin's `dispatch()`
function (could be an option for `WritableBuffer`), and 2. store the returned
data in a `std::vector<uint8_t>` on the `HostBridge` struct and write back a
pointer to that instead. That might involve extending `DefaultDataConverter`
to also handle writing back values.
- Check if we need special handling for the `effGetChunk` and `effSetChunk`
events.
- Mention precompiled binaries and building from source in the installation