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

fixed-point: real FFT no longer needs float ops when MIXED_PRECISION is enabled.

parent 3e650975
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
#endif
#include "os_support.h"
#include "mathops.h"
#include "kiss_fftr.h"
#include "_kiss_fft_guts.h"
......@@ -60,7 +61,7 @@ kiss_fftr_cfg kiss_fftr_alloc(int nfft,void * mem,size_t * lenmem)
st->substate->scale *= .5;
#endif
#if defined (FIXED_POINT) && !defined(DOUBLE_PRECISION)
#if defined (FIXED_POINT) && (!defined(DOUBLE_PRECISION) || defined(MIXED_PRECISION))
for (i=0;i<twiddle_size;++i) {
celt_word32_t phase = i+(nfft>>1);
kf_cexp2(st->super_twiddles+i, DIV32(SHL32(phase,16),nfft));
......
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