Skip to content
Snippets Groups Projects
Commit e0c00e27 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Commit 99968abb was causing us to allocate too much stack in the MDCT

parent e43a0abe
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment