mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-19 20:46:05 +00:00
Fixed ResampleFrame_SSE doing unnecessary work
This commit is contained in:
parent
b1d63be538
commit
f8286df167
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ static void SDL_TARGETING("sse") ResampleFrame_SSE(const float* src, float* dst,
|
|||
|
||||
int i, chan = 0;
|
||||
|
||||
for (; chan + 4 <= chans; chan++) {
|
||||
for (; chan + 4 <= chans; chan += 4) {
|
||||
f0 = _mm_setzero_ps();
|
||||
|
||||
for (i = 0; i < RESAMPLER_SAMPLES_PER_FRAME; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue