kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit ba5946c8fc77037690ced43729fc48fedcca6c3e
parent 663e313f7a3526e8972eb178b5c062cf4cef18a0
Author: [email protected] <[email protected]>
Date:   Tue,  6 Jun 2017 21:45:42 +0300

Different alignment for real fft, fixes #14

Diffstat:
Minclude/kfr/dft/fft.hpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/include/kfr/dft/fft.hpp b/include/kfr/dft/fft.hpp @@ -1133,6 +1133,7 @@ private: const size_t count = csize / 2; block_process(count, csizes_t<width, 1>(), [=](size_t i, auto w) { + i++; constexpr size_t width = val_of(decltype(w)()); constexpr size_t widthm1 = width - 1; const cvec<T, width> tw = cread<width>(rtwiddle.data() + i);