emscripten: Automatically resume audio contexts

This uses the mechanism added in emscripten-core/emscripten#10843
which was applied to SDL1 and OpenAL. This adds the same for SDL2.

This also reverts commit 865eaddffed50dbd13e6564c3f73902472cf74e8
which did something similar, but the new mechanism is more effective.
This commit is contained in:
Alon Zakai 2020-07-15 09:13:03 -07:00 committed by Ryan C. Gordon
parent edaf3f9c9c
commit 20be1d634b
1 changed files with 3 additions and 0 deletions

View File

@ -215,6 +215,9 @@ EMSCRIPTENAUDIO_OpenDevice(_THIS, void *handle, const char *devname, int iscaptu
} else if (typeof(webkitAudioContext) !== 'undefined') {
SDL2.audioContext = new webkitAudioContext();
}
if (SDL2.audioContext) {
autoResumeAudioContext(SDL2.audioContext);
}
}
return SDL2.audioContext === undefined ? -1 : 0;
}, iscapture);