| 279 | * MIDI will have a single bus, nothing special there. |
| 280 | */ |
| 281 | struct BusInfo { |
| 282 | uint8_t audio; // either 0 or 1 |
| 283 | uint8_t sidechain; // either 0 or 1 |
| 284 | uint32_t groups; |
| 285 | uint32_t audioPorts; |
| 286 | uint32_t sidechainPorts; |
| 287 | uint32_t groupPorts; |
| 288 | uint32_t cvPorts; |
| 289 | |
| 290 | BusInfo() |
| 291 | : audio(0), |
| 292 | sidechain(0), |
| 293 | groups(0), |
| 294 | audioPorts(0), |
| 295 | sidechainPorts(0), |
| 296 | groupPorts(0), |
| 297 | cvPorts(0) {} |
| 298 | } inputBuses, outputBuses; |
| 299 | |
| 300 | #if DISTRHO_PLUGIN_WANT_MIDI_INPUT |
| 301 | /* Handy class for storing and sorting VST3 events and MIDI CC parameters. |
nothing calls this directly
no outgoing calls
no test coverage detected