summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy White <jwhite@codeweavers.com>2016-12-19 15:11:51 -0600
committerJeremy White <jwhite@codeweavers.com>2017-01-20 09:50:35 -0600
commitaa8e9ecb79b839cc6a08d6f8bda0376fb53a4a25 (patch)
tree5b7b273c2dc351fa757b525d11a67210ff9f5dd8
parent564461259f40ffb9f350c97c6bdd27c1a6c056f2 (diff)
Catch and note updateend messages after video destruction.
-rw-r--r--display.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/display.js b/display.js
index 40a809e..c124483 100644
--- a/display.js
+++ b/display.js
@@ -1106,6 +1106,12 @@ function handle_append_video_buffer_done(e)
{
stream.append_okay = true;
}
+
+ if (!stream.video)
+ {
+ if (STREAM_DEBUG > 0)
+ console.log("Stream id " + stream.id + " received updateend after video is gone.");
+ }
}
function handle_video_buffer_error(e)