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 0c7c3820801f5825a3f89fd1c67b7489d306f23d
parent be84c52a732be10e699107938023d3f847ebe6cf
Author: Dan Levin <d.levin256@gmail.com>
Date:   Thu, 30 Aug 2018 00:11:32 +0300

Fix complex<T> pointer in goertzel.hpp
Diffstat:
Minclude/kfr/dsp/goertzel.hpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/kfr/dsp/goertzel.hpp b/include/kfr/dsp/goertzel.hpp @@ -96,7 +96,7 @@ struct expression_parallel_goertzel : output_expression q1 = q0; } } - complex<T> result[]; + complex<T>* result; const vec<T, width> omega; const vec<T, width> coeff; vec<T, width> q0;