mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-05 19:08:12 +00:00
audio_convertAccuracy: Shuffle the data in case of a bad SIMD implementation
This commit is contained in:
@@ -982,6 +982,14 @@ static int audio_convertAccuracy(void *arg)
|
||||
src_data[j++] = SDLTest_RandomSint32() / 2147483648.0f;
|
||||
}
|
||||
|
||||
/* Shuffle the data for good measure */
|
||||
for (i = src_num - 1; i >= 0; --i) {
|
||||
float f = src_data[i];
|
||||
j = SDLTest_RandomIntegerInRange(0, src_num);
|
||||
src_data[i] = src_data[j];
|
||||
src_data[j] = f;
|
||||
}
|
||||
|
||||
for (i = 0; i < SDL_arraysize(formats); ++i) {
|
||||
SDL_AudioSpec src_spec, tmp_spec;
|
||||
Uint64 convert_begin, convert_end;
|
||||
|
Reference in New Issue
Block a user