• 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
Only seeing apple aufx AudioUnits
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Only seeing apple aufx AudioUnits


  • Subject: Only seeing apple aufx AudioUnits
  • From: Ethan Funk <email@hidden>
  • Date: Fri, 19 Mar 2010 20:04:30 -0700

My latest problem porting my application to intel/10.6 from PPC/10.4: it only sees apple aufx AudioUnits.

The following is a snippet of code I used to get the component list.  When I step through with a break points set just after FindNextComponent, and further on where I get name, etc of the component, I see that only apple's components are returned.  No errors occur. The only unit excluded is the matrix reverb, because it does not meet my 2 channel input minimum requirement. In this case, my code skips it and moves to the next.  Note also that AULabs shows other (non-apple) aufx components I have installed on my system, running under the same user, etc.

desc.componentFlags = 0;        
desc.componentFlagsMask = 0;    
desc.componentType = kAudioUnitType_Effect;
desc.componentSubType = 0;       
desc.componentManufacturer = 0;


comp = NULL;
while(comp = FindNextComponent(comp, &desc)){
if(OpenAComponent(comp, &instance))
continue;
// check supported channels
bytes = sizeof(chanInfo);
err = AudioUnitGetProperty(instance, kAudioUnitProperty_SupportedNumChannels, kAudioUnitScope_Global, 0, &chanInfo, &bytes);

.... Do Useful stuff related to building a list of available processing units and close the component when done ...
}

I also checked the desc variable each time through to make sure it wasn't being modified.  What could cause this?

Thanks,
Ethan...
 _______________________________________________
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

  • Follow-Ups:
    • Re: Only seeing apple aufx AudioUnits
      • From: William Stewart <email@hidden>
  • Prev by Date: Re: Code to create UIImage of waveform from audiofile?
  • Next by Date: Re: Code to create UIImage of waveform from audiofile?
  • Previous by thread: Re: Code to create UIImage of waveform from audiofile?
  • Next by thread: Re: Only seeing apple aufx AudioUnits
  • Index(es):
    • Date
    • Thread