From eeae587ca6f8907b0731aef76e04073d374d8072 Mon Sep 17 00:00:00 2001 From: Archie Jaskowicz Date: Wed, 30 Oct 2024 21:25:06 +0000 Subject: [PATCH] fix: neon now compiles --- include/dpp/isa/neon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dpp/isa/neon.h b/include/dpp/isa/neon.h index 8d27d8b241..c3ee6910f2 100644 --- a/include/dpp/isa/neon.h +++ b/include/dpp/isa/neon.h @@ -56,7 +56,7 @@ namespace dpp { neon_float gain_vector = vdupq_n_f32(current_gain); static constexpr float data[4] = { 0.0f, 1.0f, 2.0f, 3.0f }; neon_float floats = vld1q_f32(data); - neon_float increment_vector = vmulq_f32(vdupq_n_f32(increment), floats)); + neon_float increment_vector = vmulq_f32(vdupq_n_f32(increment), floats); neon_float current_samples_new = vmulq_f32(gathered_values, vaddq_f32(gain_vector, increment_vector)); // Clamping the values between int16_t min and max