Re: Emagic VST2AU SDK and multi-output MusicDevice
Re: Emagic VST2AU SDK and multi-output MusicDevice
- Subject: Re: Emagic VST2AU SDK and multi-output MusicDevice
- From: Art Gillespie <email@hidden>
- Date: Sat, 3 May 2003 13:29:25 -0400
Shot in the dark:
What does your SupportedNumChannels() implementation look like?
For my multi-out MusicDevice, which supports either 2 or 8 outputs:
UInt32 AUVST::SupportedNumChannels(const AUChannelInfo** ppArray)
{
static const AUChannelInfo asChannelInfo[] = { { 0, 2 }, { 0, 8 } };
if (ppArray) *ppArray=asChannelInfo;
return 2;
}
On Friday, May 2, 2003, at 01:46 PM, Malcolm Haylock wrote:
Thanks very much Art.
If you remove the overrides then multichannel playback works fine.
However
the plugin now appears in Logic's popup as a mono, stereo and
multichannel
plug. I played around trying to just get it to appear as a multichannel
plug without crashing but was unsuccessful. Do you know the fix?
Thanks,
Malcolm
_______________________________________________
coreaudio-api mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/coreaudio-api
Do not post admin requests to the list. They will be ignored.