ref: 3c9b4d615cac46c686b260efb03713415855277b
parent: c930cc57d2e2cf32a9ecf6aa2cebb8a3a785b3ad
author: Jean-Marc Valin <jmvalin@jmvalin.ca>
date: Wed Feb 15 12:34:24 EST 2017
Increasing GLOBAL_STACK_SIZE to 120000 to avoid failure Cannot prove it's the correct value, but it's better than the previous values, which sometimes segfaults. The increase was made necessary due to 120 ms frame size support.
--- a/celt/arch.h
+++ b/celt/arch.h
@@ -260,9 +260,9 @@
#ifndef GLOBAL_STACK_SIZE
#ifdef FIXED_POINT
-#define GLOBAL_STACK_SIZE 100000
+#define GLOBAL_STACK_SIZE 120000
#else
-#define GLOBAL_STACK_SIZE 100000
+#define GLOBAL_STACK_SIZE 120000
#endif
#endif