Remove receive time from performance overlay

It is superseded by network latency
This commit is contained in:
Cameron Gutman
2021-05-22 14:08:46 -05:00
parent 27cb0029a8
commit b74e0ce48f
12 changed files with 0 additions and 14 deletions

View File

@@ -666,8 +666,6 @@ public class MediaCodecDecoderRenderer extends VideoDecoderRenderer {
(float)lastTwo.framesLost / lastTwo.totalFrames * 100)).append('\n');
sb.append(context.getString(R.string.perf_overlay_netlatency,
(int)(rttInfo >> 32), (int)rttInfo)).append('\n');
sb.append(context.getString(R.string.perf_overlay_recvtime,
((float)lastTwo.totalTimeMs / lastTwo.totalFramesReceived) - decodeTimeMs)).append('\n');
sb.append(context.getString(R.string.perf_overlay_dectime, decodeTimeMs));
perfListener.onPerfUpdate(sb.toString());
}