summaryrefslogtreecommitdiff
path: root/apps/playback.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playback.c')
-rw-r--r--apps/playback.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 6ad5e53a20..6fd63d5a0f 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -111,13 +111,13 @@ static const char audio_thread_name[] = "audio";
111 111
112/* Codec thread. */ 112/* Codec thread. */
113static struct event_queue codec_queue; 113static struct event_queue codec_queue;
114static long codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)] IDATA_ATTR; 114static long codec_stack[(DEFAULT_STACK_SIZE + 0x2000)/sizeof(long)] IDATA_ATTR;
115static const char codec_thread_name[] = "codec"; 115static const char codec_thread_name[] = "codec";
116 116
117/* Voice codec thread. */ 117/* Voice codec thread. */
118static struct event_queue voice_codec_queue; 118static struct event_queue voice_codec_queue;
119/* Not enough IRAM for this. */ 119/* Not enough IRAM for this. */
120static long voice_codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)]; 120static long voice_codec_stack[(DEFAULT_STACK_SIZE + 0x2000)/sizeof(long)] IDATA_ATTR;
121static const char voice_codec_thread_name[] = "voice codec"; 121static const char voice_codec_thread_name[] = "voice codec";
122 122
123static struct mutex mutex_bufferfill; 123static struct mutex mutex_bufferfill;
@@ -1635,7 +1635,8 @@ void audio_thread(void)
1635 the requested track. This is needed because when skipping 1635 the requested track. This is needed because when skipping
1636 tracks fast, AUDIO_PLAY commands will get queued with the 1636 tracks fast, AUDIO_PLAY commands will get queued with the
1637 the same track and playback will stutter. */ 1637 the same track and playback will stutter. */
1638 if (last_index == playlist_get_display_index() && playing) { 1638 if (last_index == playlist_get_display_index() && playing
1639 && pcm_is_playing()) {
1639 logf("already playing req. track"); 1640 logf("already playing req. track");
1640 break ; 1641 break ;
1641 } 1642 }