Notify about unsupported aux IO in standalones
None of the backends support this at the moment.
This commit is contained in:
parent
9536842a15
commit
997249a293
|
@ -164,6 +164,14 @@ impl<P: Plugin, B: Backend> Wrapper<P, B> {
|
|||
}
|
||||
}
|
||||
|
||||
// TODO: Sidechain inputs and auxiliary outputs
|
||||
if P::DEFAULT_AUX_INPUTS.is_some() {
|
||||
nih_log!("Sidechain inputs are not yet supported in this standalone version");
|
||||
}
|
||||
if P::DEFAULT_AUX_OUTPUTS.is_some() {
|
||||
nih_log!("Auxiliary outputs are not yet supported in this standalone version");
|
||||
}
|
||||
|
||||
let wrapper = Arc::new(Wrapper {
|
||||
backend: AtomicRefCell::new(backend),
|
||||
|
||||
|
|
Loading…
Reference in a new issue