Browse Source

emscripten: Be more aggressive when closing audio capture devices.

Fixes exceptions being thrown on shutdown.
Ryan C. Gordon 8 years ago
parent
commit
2098bfb3ca
1 changed files with 9 additions and 0 deletions
  1. 9 0
      src/audio/emscripten/SDL_emscriptenaudio.c

+ 9 - 0
src/audio/emscripten/SDL_emscriptenaudio.c

@@ -203,7 +203,15 @@ EMSCRIPTENAUDIO_CloseDevice(_THIS)
             if (SDL2.capture.silenceTimer !== undefined) {
                 clearTimeout(SDL2.capture.silenceTimer);
             }
+            if (SDL2.capture.stream !== undefined) {
+                var tracks = SDL2.capture.stream.getAudioTracks();
+                for (var i = 0; i < tracks.length; i++) {
+                    SDL2.capture.stream.removeTrack(tracks[i]);
+                }
+                SDL2.capture.stream = undefined;
+            }
             if (SDL2.capture.scriptProcessorNode !== undefined) {
+                SDL2.capture.scriptProcessorNode.onaudioprocess = function(audioProcessingEvent) {};
                 SDL2.capture.scriptProcessorNode.disconnect();
                 SDL2.capture.scriptProcessorNode = undefined;
             }
@@ -344,6 +352,7 @@ EMSCRIPTENAUDIO_OpenDevice(_THIS, void *handle, const char *devname, int iscaptu
                 };
                 SDL2.capture.mediaStreamNode.connect(SDL2.capture.scriptProcessorNode);
                 SDL2.capture.scriptProcessorNode.connect(SDL2.audioContext.destination);
+                SDL2.capture.stream = stream;
             };
 
             var no_microphone = function(error) {