We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45f87e commit 9715996Copy full SHA for 9715996
include/dpp/isa/neon.h
@@ -56,7 +56,7 @@ namespace dpp {
56
neon_float gain_vector = vdupq_n_f32(current_gain);
57
static constexpr float data[4] = { 0.0f, 1.0f, 2.0f, 3.0f };
58
neon_float floats = vld1q_f32(data);
59
- neon_float increment_vector = vmulq_f32(vdupq_n_f32(increment), floats));
+ neon_float increment_vector = vmulq_f32(vdupq_n_f32(increment), floats);
60
neon_float current_samples_new = vmulq_f32(gathered_values, vaddq_f32(gain_vector, increment_vector));
61
62
// Clamping the values between int16_t min and max
0 commit comments