I have an audio app that uses the Media Playback audio session category to allow background audio. Once my audio session is initialized, the hardware volume buttons on the iOS device control the volume of my audio session.

Once audio playback stops, I'd like to return control of the phone ringer back to the hardware volume buttons but my attempt to do this by deactivating the audio session doesn't do the trick.

Here is how I'm initializing and activating my audio session:

AudioSessionInitialize(NULL, NULL, interruptionListenerCallback, self);

AudioSessionAddPropertyListener(kAudioSessionProperty_AudioRouteChange, 
                                audioRouteChangeListenerCallback, 
                                self);
UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;

AudioSessionSetProperty(kAudioSessionProperty_AudioCategory,
                        sizeof(sessionCategory),           
                        &sessionCategory);

Here is how I'm attempting to deactivate the audio session and return control of the iOS device's ringer back to the hardware volume controls:

AudioSessionSetActive(false);

There is at least one app that I know of that behaves this way (Audible.com's iOS app). Does anyone have any idea what I may be doing wrong?

link|improve this question
Did you try setting the category back to ambient? – virorum Feb 3 at 18:29
I tried setting the category to everything other than media playback with no luck. – Seth McFarland Mar 13 at 11:31
Interesting, let me remind you that playing with iOS audio requires very careful error-handling. What is OSStatus returned by AudioSessionSetActive(false); ? developer.apple.com/library/ios/#DOCUMENTATION/AudioToolbox/… – A-Live Mar 18 at 16:30
   
The OSStatus returned by AudioSessionSetActive(false) is 560030580, which I believe is kAudioSessionNotActiveError ('!act'), which means "The audio operation failed because your application’s audio session was not active". However, using the volume controls at this time still controls the audio volume and not the device's ringer volume. – Seth McFarland Apr 11 at 1:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.