summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/audio_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/audio_thread.c')
-rw-r--r--apps/plugins/mpegplayer/audio_thread.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/audio_thread.c b/apps/plugins/mpegplayer/audio_thread.c
index 2bb766ad88..7d2f849a44 100644
--- a/apps/plugins/mpegplayer/audio_thread.c
+++ b/apps/plugins/mpegplayer/audio_thread.c
@@ -714,12 +714,14 @@ bool audio_thread_init(void)
714 /* Start the audio thread */ 714 /* Start the audio thread */
715 audio_str.hdr.q = &audio_str_queue; 715 audio_str.hdr.q = &audio_str_queue;
716 rb->queue_init(audio_str.hdr.q, false); 716 rb->queue_init(audio_str.hdr.q, false);
717 rb->queue_enable_queue_send(audio_str.hdr.q, &audio_str_queue_send);
718 717
719 /* One-up on the priority since the core DSP over-yields internally */ 718 /* One-up on the priority since the core DSP over-yields internally */
720 audio_str.thread = rb->create_thread( 719 audio_str.thread = rb->create_thread(
721 audio_thread, audio_stack, audio_stack_size, 0, 720 audio_thread, audio_stack, audio_stack_size, 0,
722 "mpgaudio" IF_PRIO(,PRIORITY_PLAYBACK-1) IF_COP(, CPU)); 721 "mpgaudio" IF_PRIO(,PRIORITY_PLAYBACK-4) IF_COP(, CPU));
722
723 rb->queue_enable_queue_send(audio_str.hdr.q, &audio_str_queue_send,
724 audio_str.thread);
723 725
724 if (audio_str.thread == NULL) 726 if (audio_str.thread == NULL)
725 return false; 727 return false;