Merge "Reduce the priority of the TTS thread."

This commit is contained in:
Narayan Kamath
2011-07-27 08:15:48 -07:00
committed by Android (Google) Code Review

View File

@@ -227,7 +227,7 @@ public abstract class TextToSpeechService extends Service {
private boolean mFirstIdle = true;
public SynthThread() {
super(SYNTH_THREAD_NAME, android.os.Process.THREAD_PRIORITY_AUDIO);
super(SYNTH_THREAD_NAME, android.os.Process.THREAD_PRIORITY_DEFAULT);
}
@Override