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 166a1107db80811f7cd990a5bfebe273bc8daef5
parent fc7924baf11234af2f46767174728cea7c5c0796
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Tue, 25 Feb 2020 06:26:18 +0000

Fix fir_state for older compilers

Diffstat:
Mtests/dsp_test.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/dsp_test.cpp b/tests/dsp_test.cpp @@ -402,7 +402,7 @@ TEST(fir) return result; }); - fir_state state(taps.ref()); + fir_state<T> state(taps.ref()); CHECK_EXPRESSION(fir(state, data), 100, [&](size_t index) -> T { T result = 0;