Re: AudioUnitHosting / aumf bug?
Re: AudioUnitHosting / aumf bug?
- Subject: Re: AudioUnitHosting / aumf bug?
- From: Bill Stewart <email@hidden>
- Date: Thu, 1 May 2003 16:23:17 -0700
Oops!
quite right...
On Thursday, May 1, 2003, at 03:26 PM, email@hidden wrote:
I was having some problems with AudioUnitHosting's drop down list of
AudioUnits when I had Music Effect ('aumf') audio units in my
Components directory. I made this change to
AudioUnitHosting::GetListOfAudioUnits() which fixed it:
AudioUnitHosting.cpp:534
// CR CHANGED -- Initialize before the loop
int n = 0;
for (int i = 0; i < numTypes; ++i)
{
desc.componentType = GetNthAUType (i);
Component comp = 0;
// CR CHANGED -- Moved this above
// int n = 0;
comp = FindNextComponent (NULL, &desc);
while (comp != NULL) {
GetComponentInfo (comp, &mCompDescs[n++],
NULL, NULL, NULL);
comp = FindNextComponent (comp, &desc);
}
}
- sekhar
--
C. Ramakrishnan email@hidden
_______________________________________________
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.
--
mailto:email@hidden
tel: +1 408 974 4056
________________________________________________________________________
__
"Much human ingenuity has gone into finding the ultimate Before.
The current state of knowledge can be summarized thus:
In the beginning, there was nothing, which exploded" - Terry Pratchett
________________________________________________________________________
__
_______________________________________________
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.