Re: External Sound Components
Re: External Sound Components
- Subject: Re: External Sound Components
- From: Doug Wyatt <email@hidden>
- Date: Wed, 5 Jan 2005 11:42:43 -0800
You're using Sound Manager.
Much better would be to use CoreAudio directly, as an earlier
(private?) reply suggested.
Doug
On Jan 5, 2005, at 9:05, Mark Thomas wrote:
Hi,
I'm doing
ComponentDescription searching;
Component outputDevice=NULL;
// search for a sound output device component
searching.componentType = kSoundOutputDeviceType;
searching.componentSubType = kAnyComponentSubType;
searching.componentManufacturer = kAnyComponentManufacturer;
searching.componentFlags = 0;
searching.componentFlagsMask = kAnyComponentFlagsMask;
outputDevice = FindNextComponent(outputDevice, &searching);
while ( outputDevice )
{
ComponentDescription compDesc;
char module[200], description[200];
GetComponentInfo(outputDevice, &compDesc, name,info,NULL);
outputDevice = FindNextComponent(outputDevice, &searching);
}
Is this not correct ???.
Thanks
Mark.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Coreaudio-api mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden