After I changed AudioSession's category from kAudioSessionCategory_MediaPlayback to kAudioSessionCategory_PlayAndRecord, the AudioQueueStart method hanged on about 3 ~ 5 seconds to start recording.
The problem only happens on iOS devices running iOS 5, not in Simulator or the devices still running iOS 4 or iOS 3.
Here is what I have tried:
If I don't change the category but always use kAudioSessionCategory_PlayAndRecord, every thing works fine. AudioQueueStart start recording in about 0.01 seconds.
But because I want my sound come from the device's speaker, so I can not use kAudioSessionCategory_PlayAndRecord all the time.
Use kAudioSessionOverrideAudioRoute_Speaker and kAudioSessionCategory_PlayAndRecord at the same time is a good idea but if I do so, I should also handle a lot of kAudioSessionProperty_AudioRouteChange situations such as the user plug in or remove a headphone, connect a bluetooth headset, etc. It is too complex.
Any advice or solution will be appreciated.