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
Adds an error log when a potential video codec stall is detected (#26)
We have a production issue where we get infinite fast state flips
between buffering and playing after a while.
So far, investigations have allowed us to understand that the issue
seems that video frames do not get out of the codec. So after
approximately 3 mins, the playhead gets to the end of the video buffer,
so the player switches immediately to buffering. But at the same, the
buffer is full (it's not being consumed anymore) so the buffering system
flips it back to playing immediately. And that cycle is then repeated.
This PR adds a way to detect the codec stall situation, and send an
error through the logger. The app will then be able to handle the error
properly (potentially by restarting the playback automatically).
To do so, we just check if we've been waiting for a decoded buffer for a
certain time without getting any.
@@ -2139,6 +2142,22 @@ private boolean drainOutputBuffer(long positionUs, long elapsedRealtimeUs)
2139
2142
}
2140
2143
2141
2144
if (outputIndex < 0) {
2145
+
2146
+
// MIREGO video renderer stall detection
2147
+
if (getTrackType() == TRACK_TYPE_VIDEO) {
2148
+
2149
+
if (Util.currentProcessedOutputBuffers < Util.currentQueuedInputBuffers) {
2150
+
// waiting for a decoded buffer to be available from the codec
2151
+
longcurrentTimeMs = System.currentTimeMillis();
2152
+
if (Util.waitingForDecodedVideoBufferTimeMs == 0) {
2153
+
Util.waitingForDecodedVideoBufferTimeMs = currentTimeMs; // starting to wait for the decoded buffer
2154
+
} elseif (!hasReportedRenderingStall && currentTimeMs > Util.waitingForDecodedVideoBufferTimeMs + 7000) { // been waiting for an arbitrary while, send an error to the app
2155
+
Log.e(TAG, newPlaybackException("Video codec may be stalled error", newRuntimeException(), PlaybackException.ERROR_CODE_VIDEO_CODEC_STALLED));
0 commit comments