mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-14 20:40:03 +02:00
Add a document with all implemented interfaces
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
# VST3 interfaces
|
||||
|
||||
TODO: After merging into master, update this link to just point to GitHub
|
||||
|
||||
See [docs/vst3.md](../../../../docs/vst3.md) for more information on how the
|
||||
serialization works.
|
||||
|
||||
VST3 interfaces are implemented as follows:
|
||||
|
||||
| Yabridge class | Interfaces | Notes |
|
||||
| ------------------- | ------------------------------------------------------ | ---------------------------------------------------------- |
|
||||
| `YaComponent` | `IComponent`, `IPluginBase`, `IAudioProcessor` | |
|
||||
| `YaHostApplication` | `iHostAPplication` | Used as a 'context' to allow the plugin to maek callbacks. |
|
||||
| `YaPluginFactory` | `IPluginFactory`, `IPluginFactory2`, `IPluginFactory3` | |
|
||||
|
||||
The following interfaces are implemented purely fur serialization purposes:
|
||||
|
||||
| Yabridge class | Interfaces | Notes |
|
||||
| -------------------- | ------------------- | ---------------------------------------------------------------------- |
|
||||
| `YaEventList` | `IEventList` | Comes with a lot of serialization wrappers around the related structs. |
|
||||
| `YaParameterChanges` | `IParameterChanges` | |
|
||||
| `YaParamValueQueue` | `IParamValueQueue` | |
|
||||
| `VectorStream` | `IBStream` | Used for serializing data streams. |
|
||||
|
||||
And finally `YaProcessData` uses the above along with `YaAudioBusBuffers` to
|
||||
wrap around `ProcessData`.
|
||||
Reference in New Issue
Block a user