summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/pcmbuf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c
index 91b9f1329b..568cc7f49e 100644
--- a/apps/pcmbuf.c
+++ b/apps/pcmbuf.c
@@ -104,7 +104,9 @@ static size_t pcmbuf_mix_sample IDATA_ATTR;
104static bool low_latency_mode = false; 104static bool low_latency_mode = false;
105static bool pcmbuf_flush; 105static bool pcmbuf_flush;
106 106
107#ifdef HAVE_PRIORITY_SCHEDULING
107static int codec_thread_priority = 0; 108static int codec_thread_priority = 0;
109#endif
108 110
109extern struct thread_entry *codec_thread_p; 111extern struct thread_entry *codec_thread_p;
110 112
@@ -258,7 +260,9 @@ static void pcmbuf_under_watermark(void)
258{ 260{
259 /* Only codec thread initiates boost - voice boosts the cpu when playing 261 /* Only codec thread initiates boost - voice boosts the cpu when playing
260 a clip */ 262 a clip */
263#ifndef SIMULATOR
261 if (thread_get_current() == codec_thread_p) 264 if (thread_get_current() == codec_thread_p)
265#endif /* SIMULATOR */
262 { 266 {
263#ifdef HAVE_PRIORITY_SCHEDULING 267#ifdef HAVE_PRIORITY_SCHEDULING
264 /* If buffer is critically low, override UI priority, else 268 /* If buffer is critically low, override UI priority, else