From f20ab8a9eecfccec37234a89e86e2fe37fabc580 Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 8 Feb 2024 15:26:41 +1000 Subject: [PATCH] Web: Increase the default stack size for the AudioWorklets thread. --- miniaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index d4038afc..9ed870e3 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -39711,7 +39711,7 @@ TODO: Version 0.12: Swap this logic around so that AudioWorklets are used by def /* The thread stack size must be a multiple of 16. */ #ifndef MA_AUDIO_WORKLETS_THREAD_STACK_SIZE -#define MA_AUDIO_WORKLETS_THREAD_STACK_SIZE 16384 +#define MA_AUDIO_WORKLETS_THREAD_STACK_SIZE 131072 #endif #if defined(MA_USE_AUDIO_WORKLETS)