You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
&&event.time>settings.get().streaming.buffer.videoFramesNotAdvancing.thresholdInSeconds// We should be at least one threshold into the video before triggering
@@ -821,18 +830,16 @@ function StreamController() {
&&playbackQuality.totalVideoFrames>0// Handles devices (some TVs), where Video Quality API, totalVideoFrames always returns 0.
824
-
&&playbackQuality.totalVideoFrames<2147483647//Handles devices (some WebKit TVs), where Video Quality API, totalVideoFrames can return the max value of a 32 bit signed integer becuase the implementation uses totalVideoFrames = mediaTime * framerate.
833
+
&&playbackQuality.totalVideoFrames<2147483647//Handles devices, where Video Quality API, totalVideoFrames can return the max value of a 32 bit signed integer becuase the implementation uses totalVideoFrames = mediaTime * framerate.
825
834
&&playbackQuality.totalVideoFrames!==playbackQuality.droppedVideoFrames// Handles devices (some TVs), where Video Quality API, totalVideoFrames always equals the number of dropped frames.
826
-
&&playbackQuality.totalVideoFrames===totalVideoFramesAtLastPlaybackProgress// Total frames should advance with time progression, if not something is wrong. On some some WebKit TVs the total video frames is reset if the decoder is reinitialised.
835
+
&&playbackQuality.totalVideoFrames===totalVideoFramesAtLastPlaybackProgress// Total frames should advance with time progression, if not something is wrong. On some some TVs the total video frames is reset if the decoder is reinitialised.
0 commit comments