From b78450c88d4a4df15937c8f6584070257e7ec69c Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Wed, 20 Nov 2024 21:17:08 +0200 Subject: [PATCH] NEON mixer: Change vaddq_f32 to vaddq_s32 (Thank you Clang) Co-Authored-By: Kelpsy <138107494+kelpsyberry@users.noreply.github.com> --- include/audio/dsp_simd.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/audio/dsp_simd.hpp b/include/audio/dsp_simd.hpp index 92cb486f..9a0e723a 100644 --- a/include/audio/dsp_simd.hpp +++ b/include/audio/dsp_simd.hpp @@ -59,7 +59,7 @@ namespace DSP::MixIntoQuad { // Multiply samples by their respective gains, truncate the result, and add it into the intermediate mix buffer int32x4_t offset = vcvtq_s32_f32(vmulq_f32(currentFrame, gains_)); int32x4_t intermediateMixPrev = vld1q_s32((s32*)&mix[sampleIndex][0]); - int32x4_t result = vaddq_f32(intermediateMixPrev, offset); + int32x4_t result = vaddq_s32(intermediateMixPrev, offset); vst1q_s32((s32*)&mix[sampleIndex][0], result); } }