Merge commit 'fcbf19b764a9f6fed1db6a1d79a2f2f3fa1338d6' into main

This commit is contained in:
Sam Lantinga 2021-05-07 12:28:28 -07:00
commit 5a95ff8002

View File

@ -165,6 +165,7 @@ aaudio_CloseDevice(_THIS)
aaudio_result_t res;
LOGI(__func__);
if (private->stream) {
res = ctx.AAudioStream_requestStop(private->stream);
if (res != AAUDIO_OK) {
LOGI("SDL Failed AAudioStream_requestStop %d", res);
@ -178,6 +179,7 @@ aaudio_CloseDevice(_THIS)
SDL_SetError("%s : %s", __func__, ctx.AAudio_convertResultToText(res));
return;
}
}
if (this->iscapture) {
SDL_assert(captureDevice == this);