Hello,
I’ve just updated to the latest latest develop commit 92c219f
and my synth plugin is now failing auval.
I’m still using the Plugin Channel Configurations in the Projucer with { 0, 2 }
since my output is always stereo. I can reproduce this with a brand new project and just having a simple silent output in processBlock()
:
void Test43plugAudioProcessor::processBlock (AudioSampleBuffer& buffer, MidiBuffer& midiMessages)
{
const int totalNumOutputChannels = getTotalNumOutputChannels();
for (int i = 0; i < totalNumOutputChannels; ++i)
buffer.clear (i, 0, buffer.getNumSamples());
}
Using { 2, 2 }
seems to work but is that necessary?