Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2013-12-27 12:16:34 +0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2013-12-27 12:16:34 +0400
commite0c00e27d8decde15560b35d1ec5139fceb53a81 (patch)
treefacf4f5aa4ae416e61c381f467834fb4e29271ad /celt/mdct.c
parente43a0abe0a908603a71b0c35e8c2307a77a7211f (diff)
Commit 99968ab was causing us to allocate too much stack in the MDCT
Diffstat (limited to 'celt/mdct.c')
-rw-r--r--celt/mdct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/mdct.c b/celt/mdct.c
index 500a6289..10ec8026 100644
--- a/celt/mdct.c
+++ b/celt/mdct.c
@@ -142,7 +142,7 @@ void clt_mdct_forward(const mdct_lookup *l, kiss_fft_scalar *in, kiss_fft_scalar
N4 = N>>2;
ALLOC(f, N2, kiss_fft_scalar);
- ALLOC(f2, N2, kiss_fft_cpx);
+ ALLOC(f2, N4, kiss_fft_cpx);
/* Consider the input to be composed of four blocks: [a, b, c, d] */
/* Window, shuffle, fold */