use default thread priority in order to fix playback issues on ICS

This commit is contained in:
Adrian Ulrich 2012-09-23 14:19:11 +02:00
parent 4c47c61a44
commit 66b7a7abf2

View File

@ -375,7 +375,7 @@ public final class PlaybackService extends Service
@Override
public void onCreate()
{
HandlerThread thread = new HandlerThread("PlaybackService", Process.THREAD_PRIORITY_BACKGROUND);
HandlerThread thread = new HandlerThread("PlaybackService", Process.THREAD_PRIORITY_DEFAULT);
thread.start();
mTimeline = new SongTimeline(this);