Add more stream information in high debug situations at an updateend event.

This commit is contained in:
Jeremy White 2016-12-19 15:12:59 -06:00
parent aa8e9ecb79
commit 001bcc830f
1 changed files with 4 additions and 0 deletions

View File

@ -1111,7 +1111,11 @@ function handle_append_video_buffer_done(e)
{
if (STREAM_DEBUG > 0)
console.log("Stream id " + stream.id + " received updateend after video is gone.");
return;
}
if (STREAM_DEBUG > 1)
console.log(stream.video.currentTime + ":id " + stream.id + " updateend " + dump_media_element(stream.video));
}
function handle_video_buffer_error(e)