GBA Audio: Fix sample timing drifting when changing sample interval

This commit is contained in:
Vicki Pfau 2023-06-19 22:32:27 -07:00
parent 6c4ca7724f
commit 24f3d8808f
2 changed files with 8 additions and 2 deletions

View File

@ -3,6 +3,7 @@ Emulation fixes:
- GB Audio: Fix channels 1/2 staying muted if restarted after long silence
- GB I/O: Read back proper SVBK value after writing 0 (fixes mgba.io/i/2921)
- GB SIO: Disabling SIO should cancel pending transfers (fixes mgba.io/i/2537)
- GBA Audio: Fix sample timing drifting when changing sample interval
- GBA BIOS: Fix clobbering registers with word-sized CpuSet
Other fixes:
- mGUI: Fix cases where an older save state screenshot would be shown (fixes mgba.io/i/2183)

View File

@ -253,11 +253,16 @@ void GBAAudioWriteSOUNDCNT_X(struct GBAAudio* audio, uint16_t value) {
}
void GBAAudioWriteSOUNDBIAS(struct GBAAudio* audio, uint16_t value) {
GBAAudioSample(audio, mTimingCurrentTime(&audio->p->timing));
audio->soundbias = value;
int32_t oldSampleInterval = audio->sampleInterval;
audio->sampleInterval = 0x200 >> GBARegisterSOUNDBIASGetResolution(value);
if (oldSampleInterval != audio->sampleInterval && audio->p->stream && audio->p->stream->audioRateChanged) {
audio->p->stream->audioRateChanged(audio->p->stream, GBA_ARM7TDMI_FREQUENCY / audio->sampleInterval);
if (oldSampleInterval != audio->sampleInterval) {
audio->lastSample += oldSampleInterval * audio->sampleIndex;
audio->sampleIndex = 0;
if (audio->p->stream && audio->p->stream->audioRateChanged) {
audio->p->stream->audioRateChanged(audio->p->stream, GBA_ARM7TDMI_FREQUENCY / audio->sampleInterval);
}
}
}