summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2017-02-15 17:34:24 -0500
committerJean-Marc Valin <jmvalin@jmvalin.ca>2017-02-15 17:34:24 -0500
commit3c9b4d615cac46c686b260efb03713415855277b (patch)
tree90d7854e7d1a61aba6d3938b14f88bc15b9e3b79
parentc930cc57d2e2cf32a9ecf6aa2cebb8a3a785b3ad (diff)
downloadopus-3c9b4d615cac46c686b260efb03713415855277b.tar.gz
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.
-rw-r--r--celt/arch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/celt/arch.h b/celt/arch.h
index 9eedf74d..d1e6457c 100644
--- a/celt/arch.h
+++ b/celt/arch.h
@@ -260,9 +260,9 @@ static OPUS_INLINE int celt_isnan(float x)
#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