From 2c71435c4311427c54391ecc0745b45710d5bd73 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Mon, 3 Mar 2025 19:18:12 -0800 Subject: [PATCH] SDL: Add a small bit of allowable extra audio buffering --- src/platform/sdl/sdl-audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/sdl/sdl-audio.c b/src/platform/sdl/sdl-audio.c index d90ad95d3..8a335609f 100644 --- a/src/platform/sdl/sdl-audio.c +++ b/src/platform/sdl/sdl-audio.c @@ -109,7 +109,7 @@ static void _mSDLAudioCallback(void* context, Uint8* data, int len) { fauxClock = mCoreCalculateFramerateRatio(audioContext->core, audioContext->sync->fpsTarget); } mCoreSyncLockAudio(audioContext->sync); - audioContext->sync->audioHighWater = audioContext->samples + audioContext->resampler.highWaterMark + audioContext->resampler.lowWaterMark; + audioContext->sync->audioHighWater = audioContext->samples + audioContext->resampler.highWaterMark + audioContext->resampler.lowWaterMark + (audioContext->samples >> 6); audioContext->sync->audioHighWater *= sampleRate / (fauxClock * audioContext->obtainedSpec.freq); } mAudioResamplerSetSource(&audioContext->resampler, buffer, sampleRate / fauxClock, true);