SDL_audiotypecvt.c: Fixed memory corruption when resampling S16 t F32

This commit is contained in:
Wohlstand 2024-02-03 10:27:35 +03:00 committed by Ryan C. Gordon
parent c53c351921
commit ca01016577
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ static void SDLCALL SDL_Convert_U8_to_F32_Scalar(SDL_AudioCVT *cvt, SDL_AudioFor
static void SDLCALL SDL_Convert_S16_to_F32_Scalar(SDL_AudioCVT *cvt, SDL_AudioFormat format)
{
const int num_samples = cvt->len_cvt;
const int num_samples = cvt->len_cvt / sizeof(Sint16);
const Sint16 *src = (const Sint16 *)cvt->buf;
float *dst = (float *)cvt->buf;
int i;