Hi Everyone
I have created a test audio plug-in (VST3) which actually does nothing with 2 buses as shown below
As in juce code below
AudioChannelSet AudioChannelSet::create9point1point6() { return AudioChannelSet ({ left, right, centre, LFE, leftSurroundSide, rightSurroundSide, leftSurroundRear, rightSurroundRear, wideLeft, wideRight, topFrontLeft, topFrontRight, topSideLeft, topSideRight, topRearLeft, topRearRight }); }
the wideLeft should be at channel 8.
When I load my plug-in in AudioPluginsHost, I see that wide left appears at the channel index 14
Shouldn’t the tips in AudioPluginsHost much the order as this has been created by the AudioChannelSet::create9point1point6() method?
Thanks in advance for any reply


