gen_audio_resampler_filter: Use SDL_PI_F

This commit is contained in:
Sylvain 2023-01-16 09:23:16 +01:00 committed by Sylvain Becker
parent 4156e6f52e
commit 41221777ba

View file

@ -84,7 +84,7 @@ kaiser_and_sinc(float *table, float *diffs, const int tablelen, const double bet
}
for (i = 1; i < tablelen; i++) {
const float x = (((float) i) / ((float) RESAMPLER_SAMPLES_PER_ZERO_CROSSING)) * ((float) M_PI);
const float x = (((float) i) / ((float) RESAMPLER_SAMPLES_PER_ZERO_CROSSING)) * SDL_PI_F;
table[i] *= sinf(x) / x;
diffs[i - 1] = table[i] - table[i - 1];
}