Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1177)

Unified Diff: webrtc/pc/statscollector.cc

Issue 2995143002: Report max interframe delay over window insdead of interframe delay sum (Closed)
Patch Set: Implement more Kwiberg@ comments Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/media/engine/webrtcvideoengine.cc ('k') | webrtc/rtc_base/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/statscollector.cc
diff --git a/webrtc/pc/statscollector.cc b/webrtc/pc/statscollector.cc
index d1160b27471a8b8f4ae6a9eb08647336aae83b1c..2dc2c3baa5c5f638c4334f416ab59d3b12799a64 100644
--- a/webrtc/pc/statscollector.cc
+++ b/webrtc/pc/statscollector.cc
@@ -268,8 +268,8 @@ void ExtractStats(const cricket::VideoReceiverInfo& info, StatsReport* report) {
info.timing_frame_info->ToString());
}
- report->AddInt64(StatsReport::kStatsValueNameInterframeDelaySumMs,
- info.interframe_delay_sum_ms);
+ report->AddInt64(StatsReport::kStatsValueNameInterframeDelayMaxMs,
+ info.interframe_delay_max_ms);
}
void ExtractStats(const cricket::VideoSenderInfo& info, StatsReport* report) {
« no previous file with comments | « webrtc/media/engine/webrtcvideoengine.cc ('k') | webrtc/rtc_base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698