paullux
#1
Hello,
i made this simple eq plugin :
GitHub - Paulllux/SEQ
It works fine in Reaper, when trying in logic it comes up as incomatible, but works fine.
running auval -v on it I get this error:
1 Channel Test:
Render Test at 512 frames
JUCE Assertion failure in juce_AudioBlock.h:245
zsh: segmentation fault auval -v aufx Mab3 Manu
Any idea’s how to fix this ?
paullux
#2
fixed it by checking the commit of the plugin I used as an example, to see what changed at the point the error was solved.
had to change this in the isBusesLayoutSupported section
if (layouts.getMainOutputChannelSet() != juce::AudioChannelSet::mono()
&& layouts.getMainOutputChannelSet() != juce::AudioChannelSet::stereo())
return false;
into
if (layouts.getMainOutputChannelSet() != juce::AudioChannelSet::stereo())
return false;