mirror of
https://github.com/robbert-vdh/nih-plug.git
synced 2026-07-01 02:36:54 +00:00
Support auxiliary inputs and outputs for CLAP
This does not yet work for VST3. You'll always get empty slices there.
This commit is contained in:
@@ -215,7 +215,12 @@ impl Plugin for PubertySimulator {
|
||||
self.stft.set_block_size(self.window_size());
|
||||
}
|
||||
|
||||
fn process(&mut self, buffer: &mut Buffer, context: &mut impl ProcessContext) -> ProcessStatus {
|
||||
fn process(
|
||||
&mut self,
|
||||
buffer: &mut Buffer,
|
||||
_aux: &mut AuxiliaryBuffers,
|
||||
context: &mut impl ProcessContext,
|
||||
) -> ProcessStatus {
|
||||
// Compensate for the window function, the overlap, and the extra gain introduced by the
|
||||
// IDFT operation
|
||||
let window_size = self.window_size();
|
||||
|
||||
Reference in New Issue
Block a user