Hola!
I'm having problems showing my plugin in AU Lab when I have multiple channels.
I downloaded de latest version of Juce
I compiled it with the standard AppConfig.h configuration (2 channels) and it shows and works in AU Lab, logic...
Now I change the config file to support up to 8 channels
#ifndef JucePlugin_MaxNumInputChannels
#define JucePlugin_MaxNumInputChannels 8
#endif
#ifndef JucePlugin_MaxNumOutputChannels
#define JucePlugin_MaxNumOutputChannels 8
#endif
#ifndef JucePlugin_PreferredChannelConfigurations
#define JucePlugin_PreferredChannelConfigurations {1, 1}, {2, 2}, {6, 6}, {8, 8}
It also passes auval and shows
FORMAT TESTS:
Reported Channel Capabilities (explicit):
[1, 1] [2, 2] [6, 6] [8, 8]
Input/Output Channel Handling:
1-1 1-2 1-4 1-5 1-6 1-7 1-8 2-2 2-4 2-5 2-6 2-7 2-8 4-4 4-5 5-5 6-6 7-7 8-8
X X X X
Any clue of why is not showing in the AU LAb list when I have 6 channels?
Thx
