We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
right now, i/o is fixed at stereo in, stereo out. this should be configurable somehow.
imo, MVP on this is a fixed channel count defined in the Plugin impl block, eg:
Plugin
impl Plugin for Gain { const NAME: &'static str = "basic gain plug"; const PRODUCT: &'static str = "basic gain plug"; const VENDOR: &'static str = "spicy plugins & co"; const INPUT_CHANNELS: usize = 2; const OUTPUT_CHANNELS: usize = 2; const MIDI_INPUT: bool = false; type Model = GainModel;
vst2 only supports fixed i/o configuration like this, but formats like auv2 have significantly more flexible methods. punting on this for the future.
The text was updated successfully, but these errors were encountered:
phase 1 (fixed i/o channel counts) done in 0ff0934
Sorry, something went wrong.
No branches or pull requests
right now, i/o is fixed at stereo in, stereo out. this should be configurable somehow.
imo, MVP on this is a fixed channel count defined in the
Plugin
impl block, eg:vst2 only supports fixed i/o configuration like this, but formats like auv2 have significantly more flexible methods. punting on this for the future.
The text was updated successfully, but these errors were encountered: