| Index: webrtc/video/receive_statistics_proxy.cc
|
| diff --git a/webrtc/video/receive_statistics_proxy.cc b/webrtc/video/receive_statistics_proxy.cc
|
| index 2af19125c24ea62e8a5e5df136d5943744b4fc07..f222c654735b68592836356ea8729f91c9bebd77 100644
|
| --- a/webrtc/video/receive_statistics_proxy.cc
|
| +++ b/webrtc/video/receive_statistics_proxy.cc
|
| @@ -551,6 +551,7 @@ void ReceiveStatisticsProxy::OnDecodedFrame(rtc::Optional<uint8_t> qp,
|
| if (last_decoded_frame_time_ms_) {
|
| int64_t interframe_delay_ms = now - *last_decoded_frame_time_ms_;
|
| RTC_DCHECK_GE(interframe_delay_ms, 0);
|
| + stats_.interframe_delay_sum_ms += interframe_delay_ms;
|
| if (last_content_type_ == VideoContentType::SCREENSHARE) {
|
| interframe_delay_counter_screenshare_.Add(interframe_delay_ms);
|
| if (interframe_delay_max_ms_screenshare_ < interframe_delay_ms) {
|
|
|