summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/codec_thread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codec_thread.c b/apps/codec_thread.c
index 4eb85c8d71..807c0b6e8e 100644
--- a/apps/codec_thread.c
+++ b/apps/codec_thread.c
@@ -92,7 +92,8 @@ static struct event_queue codec_queue SHAREDBSS_ATTR;
92static struct queue_sender_list codec_queue_sender_list SHAREDBSS_ATTR; 92static struct queue_sender_list codec_queue_sender_list SHAREDBSS_ATTR;
93 93
94/* Workaround stack overflow in opus codec on highmem devices (see FS#13060). */ 94/* Workaround stack overflow in opus codec on highmem devices (see FS#13060). */
95#if !defined(CPU_COLDFIRE) && (MEMORYSIZE >= 8) && defined(IRAMSIZE) && IRAMSIZE > (32 * 1024) 95/* Fixed 2019-8-14 (see FS#13131) */
96#if 0 /*!defined(CPU_COLDFIRE) && (MEMORYSIZE >= 8) && defined(IRAMSIZE) && IRAMSIZE > (32 * 1024)*/
96#define WORKAROUND_FS13060 0x800 97#define WORKAROUND_FS13060 0x800
97#else 98#else
98#define WORKAROUND_FS13060 0 99#define WORKAROUND_FS13060 0