mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
NEON mixer: Change vaddq_f32 to vaddq_s32 (Thank you Clang)
Co-Authored-By: Kelpsy <138107494+kelpsyberry@users.noreply.github.com>
This commit is contained in:
parent
3df63beef4
commit
b78450c88d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue