Re: Recommended way to handle suspend/resume on notebooks
Re: Recommended way to handle suspend/resume on notebooks
- Subject: Re: Recommended way to handle suspend/resume on notebooks
- From: Stéphane Letz <email@hidden>
- Date: Wed, 14 Oct 2009 21:10:50 +0200
You are calling AudioHardwareSetProperty incorrectly. The obvious
problem is that you are passing NULL for the inPropertyData when you
should be passing the address of a CFRunLoopRef that is set to NULL.
The other problem is that AudioHardwareSetProperty is deprecated and
you should use AudioObjectSetPropertyData. The code would look like
this:
CFRunLoopRef theRunLoop = NULL;
AudioObjectPropertyAddress theAddress =
{ kAudioHardwarePropertyRunLoop, kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster };
OSStatus theError = AudioObjectSetPropertyData
(kAudioObjectSystemObject, &theAddress, 0, NULL, sizeof(CFRunLoopRef),
&theRunLoop);
This should probably be the first call into the HAL that the process
makes. So sticking it somewhere near the beginning of main() is a good
idea.
Thanks that fixed the problem!
Any other possible breaking change that SL introduces? Is there any
CoreAudio change list somewhere?
Thanks
Stéphane Letz _______________________________________________
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