• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
AudioUnitHosting / aumf bug?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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.

  • Follow-Ups:
    • Re: AudioUnitHosting / aumf bug?
      • From: Bill Stewart <email@hidden>
  • Prev by Date: RE: User presentation of device names in Jaguar
  • Next by Date: Re: AudioUnitHosting / aumf bug?
  • Previous by thread: Re: Parameters required for settings and presets?
  • Next by thread: Re: AudioUnitHosting / aumf bug?
  • Index(es):
    • Date
    • Thread