I am starting to explore the ProcessorChain - and have one very basic question:
I can add a convolution reverb to a ProcessorChain owned array, written below:
chain.add(new juce::dsp::ProcessorChain < juce::dsp::Convolution>);
But when I try to add it with a fixed latency, I am sure I am missing something, because I get an error
chain.add(new juce::dsp::ProcessorChain < juce::dsp::Convolution(juce::dsp::Convolution::Latency{ lat })>);
When I add it without the latency part, it works, also adding a convolution outside a processorchain as written above -with the latency- also works ok. I am obviously writing this wrong, what’s my problem?
Thanks in advance,