summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 80a1b87f74..bebbfb1e43 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -1861,7 +1861,7 @@ static void audio_thread(void)
1861 1861
1862 while (1) 1862 while (1)
1863 { 1863 {
1864 if (filling != STATE_FILLING) { 1864 if (filling != STATE_FILLING && filling != STATE_IDLE) {
1865 /* End of buffering, let's calculate the watermark and unboost */ 1865 /* End of buffering, let's calculate the watermark and unboost */
1866 set_filebuf_watermark(); 1866 set_filebuf_watermark();
1867 cancel_cpu_boost(); 1867 cancel_cpu_boost();
@@ -1982,7 +1982,7 @@ static void audio_thread(void)
1982 break; 1982 break;
1983 1983
1984 default: 1984 default:
1985 // LOGFQUEUE("audio < default : %08lX", ev.id); 1985 /* LOGFQUEUE("audio < default : %08lX", ev.id); */
1986 break; 1986 break;
1987 } /* end switch */ 1987 } /* end switch */
1988 } /* end while */ 1988 } /* end while */