AudioUnitHosting / aumf bug?
AudioUnitHosting / aumf bug?
- Subject: AudioUnitHosting / aumf bug?
- From: email@hidden
- Date: Thu, 01 May 2003 15:26:34 -0700
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.