1
0
Fork 0

Notify about unsupported aux IO in standalones

None of the backends support this at the moment.
This commit is contained in:
Robbert van der Helm 2022-09-07 15:58:09 +02:00
parent 9536842a15
commit 997249a293

View file

@ -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),