I have a bad performance issue with my iPhone game Tiny Wings which i try to solve since some weeks. The game is slightly jittering all the time which is very strange because the "OpenGL ES Driver" instrument shows me that the game runs with stable 60fps. It seems that it lags every 300-600ms so i think it has something to do with the background music mp3 playback (i think the AVAudioPlayer is loading evere few 100ms a new piece of mp3 data). If i don't play back the background music the game seems to run smooth.
This is what i use for init the AudioSession:
audioSession = [AVAudioSession sharedInstance];
audioSessionError = nil;
isExternalAudioPlaying = [self isAudioPlaying];
if (!isExternalAudioPlaying) {
soundCategory = AVAudioSessionCategorySoloAmbient;
} else {
soundCategory = AVAudioSessionCategoryAmbient;
}
[audioSession setActive:YES error:&audioSessionError];
[audioSession setCategory:soundCategory error:&audioSessionError];
For the music playback i just use an AVAudioPlayer. It worked fine and the version of Tiny Wings which is currently in the AppStore (since march 2011) doesn't has the jittering.
It seems like the mp3 playback doesn't use the hardware acceleration anymore (which it should use because i only play back one single mp3 and use the SoloAmbient session category). Could it be that Apple has changed anything in the SDK (i can't find anything)? If i recompile the old version of Tiny Wings (which is currently in the AppStore) with the new iOS SDK 4.3 it also has this jittering while the mp3 playback.
Another strange fact is that on my old iPod 2G with iOS 3.2 the game runs absolutely smooth but not on all my other iOS 4 devices.
Ok, i know this is not much info but i'm currently going crazy with the issue and just hoping that anybody have encountered a similar issue with the mp3 playback in iOS 4. So it would be really cool if somebody have a hint for me.