Let me first I introduce myself. My name is Harrie Munnik from the Netherlands. I developped the EMpTy 250 reverb algorithm. I have been helped a lot with the first plugin series by other coders, but now I am now trying to understand C++ myself and do some work now with Juce.
I have version 2.0 running on Cubase/Nuendo etc, but I get bug reports from users trying to get it to work with Sonar. When trying the Sonar demo software I get oscilating sounds, just like the output returns to the input of the reverb. Is there anything going on differently with the VST implementation of Sonar?
Okay I digged deeper. I downloaded the demo version of Sonar to figure things out.
My plugin has 2.0 and 5.1 covered. I made it with two different blocks and a switch between them. I now figured out that Sonar and probably also samplitude can not handle this.
bool EMT250Filter::isOutputChannelStereoPair (int index) const
{
return true;
}[/code]
Is bugging me? As a C++ rookie I must be doing something very wrong, who can help me out?