added padding in case of SIMD types

This commit is contained in:
Mark Borgerding
2011-06-20 09:59:38 -04:00
parent dda1d91086
commit d9906a3efb
2 changed files with 4 additions and 2 deletions

View File

@ -19,9 +19,9 @@ struct kiss_fftr_state{
kiss_fft_cfg substate;
kiss_fft_cpx * tmpbuf;
kiss_fft_cpx * super_twiddles;
#ifdef USE_SIMD
#ifdef USE_SIMD
void * pad;
#endif
#endif
};
kiss_fftr_cfg kiss_fftr_alloc(int nfft,int inverse_fft,void * mem,size_t * lenmem)