Merge commit 'fcbf19b764a9f6fed1db6a1d79a2f2f3fa1338d6' into main

This commit is contained in:
Sam Lantinga 2021-05-07 12:28:28 -07:00
commit 5a95ff8002
1 changed files with 13 additions and 11 deletions

View File

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