My app holds a partial wakelock (to ensure the CPU keeps running) and also uses a proximity wake lock to turn the screen off if the user holds the phone near their face. The app plays audio to the user using its own native threads and the OpenSLES api.

The problem I have is that when the proximity sensor triggers and the screen turns off the CPU appears to slow down and the native threads can no-longer keep up and the audio stutters.

Anyone know what's going on here and if there's anything I can do about it?

Regards

Phil

link|improve this question

57% accept rate
Looking at stackoverflow.com/questions/7617459/…, perhaps my problem is actually wifi performance – Philip Pearl Feb 24 at 13:18
feedback

1 Answer

What I really needed was a high performance wifi lock - it was actually the wifi that was the problem, not the CPU.

See http://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_MODE_FULL_HIGH_PERF

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.