Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix armv7 build
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Sep 2, 2023
1 parent fbd5680 commit 48024ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/modules/zita-resampler/resampler.cc
Expand Up @@ -282,7 +282,7 @@ bool Resampler::process (void)
S = vmlaq_f32 (S, vextq_f32 (T, T, 2), C2 [i]);
S = vmlaq_f32 (S, vld1q_f32 (q1), C1 [i]);
}
*out_data++ = vaddvq_f32(S);
*out_data++ = S [0] + S [1] + S [2] + S [3];
}

#else
Expand Down
2 changes: 1 addition & 1 deletion source/modules/zita-resampler/vresampler.cc
Expand Up @@ -314,7 +314,7 @@ bool VResampler::process (void)
S = vmlaq_f32 (S, vextq_f32 (T, T, 2), C2 [i]);
S = vmlaq_f32 (S, vld1q_f32 (q1), C1 [i]);
}
*out_data++ = vaddvq_f32 (S);
*out_data++ = S [0] + S [1] + S [2] + S [3];
}

#else
Expand Down

0 comments on commit 48024ae

Please sign in to comment.