Question: how to deal with an interruption while in the period of setting audio session.

Description: An interruption comes while setting up audio session.AudioSessionSetProperty(YES) statement fail his mission by returning false, which cause all sound miss.

my code like below, it handle interruption correctly in any other case.

void OpenALController::init()
{
    // set InterruptionListenerCallback as the call back.
    AudioSessionInitialize(...);
    AudioSessionSetProperty(...);
    AudioSessionSetActive(YES);
    ...
}

void OpenALController::InterruptionListenerCallback( void *inClientData, UInt32 inInterruptionState)
{
    OpenALController* pDevice= (OpenALController*)inClientData;
    if( inInterruptionState == kAudioSessionBeginInterruption )
        pDevice->HaltOpenALSession();
    else if( inInterruptionState == kAudioSessionEndInterruption )
        pDevice->ResumeOpenALSession();
}

void OpenALController::HaltOpenALSession()
{
    ...
    alcMakeContextCurrent(NULL);
    alcSuspendContext(ALContext);
    ...
}

void OpenALController::ResumeOpenALSession()
{
    OSStatus result = AudioSessionSetProperty(...);
    result |= AudioSessionSetActive(YES);
    alcMakeContextCurrent(ALContext);
    alcProcessContext(ALContext);
    ...
}
link|improve this question
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.