Browse Source

Merge commit 'fcbf19b764a9f6fed1db6a1d79a2f2f3fa1338d6' into main

Sam Lantinga 4 years ago
parent
commit
5a95ff8002
1 changed files with 13 additions and 11 deletions
  1. 13 11
      src/audio/aaudio/SDL_aaudio.c

+ 13 - 11
src/audio/aaudio/SDL_aaudio.c

@@ -165,18 +165,20 @@ aaudio_CloseDevice(_THIS)
     aaudio_result_t res;
     LOGI(__func__);
 
-    res = ctx.AAudioStream_requestStop(private->stream);
-    if (res != AAUDIO_OK) {
-        LOGI("SDL Failed AAudioStream_requestStop %d", res);
-        SDL_SetError("%s : %s", __func__, ctx.AAudio_convertResultToText(res));
-        return;
-    }
+    if (private->stream) {
+        res = ctx.AAudioStream_requestStop(private->stream);
+        if (res != AAUDIO_OK) {
+            LOGI("SDL Failed AAudioStream_requestStop %d", res);
+            SDL_SetError("%s : %s", __func__, ctx.AAudio_convertResultToText(res));
+            return;
+        }
 
-    res = ctx.AAudioStream_close(private->stream);
-    if (res != AAUDIO_OK) {
-        LOGI("SDL Failed AAudioStreamBuilder_delete %d", res);
-        SDL_SetError("%s : %s", __func__, ctx.AAudio_convertResultToText(res));
-        return;
+        res = ctx.AAudioStream_close(private->stream);
+        if (res != AAUDIO_OK) {
+            LOGI("SDL Failed AAudioStreamBuilder_delete %d", res);
+            SDL_SetError("%s : %s", __func__, ctx.AAudio_convertResultToText(res));
+            return;
+        }
     }
 
     if (this->iscapture) {