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

Unified Diff: webrtc/video/receive_statistics_proxy.cc

Issue 1941993002: Log WebRTC.Video.AVSyncOffsetInMs. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/receive_statistics_proxy.cc
diff --git a/webrtc/video/receive_statistics_proxy.cc b/webrtc/video/receive_statistics_proxy.cc
index 97c1cf17b6f6f910fa013d392a70b1d8ae0b2099..0b8f12bcfe75135cf5e97098c45bff9c06f965eb 100644
--- a/webrtc/video/receive_statistics_proxy.cc
+++ b/webrtc/video/receive_statistics_proxy.cc
@@ -63,8 +63,10 @@ void ReceiveStatisticsProxy::UpdateHistograms() {
height);
}
int sync_offset_ms = sync_offset_counter_.Avg(kMinRequiredSamples);
- if (sync_offset_ms != -1)
- RTC_HISTOGRAM_COUNTS_10000("WebRTC.Video.AVSyncOffsetInMs", sync_offset_ms);
+ if (sync_offset_ms != -1) {
+ RTC_LOGGED_HISTOGRAM_COUNTS_10000("WebRTC.Video.AVSyncOffsetInMs",
+ sync_offset_ms);
+ }
int qp = qp_counters_.vp8.Avg(kMinRequiredSamples);
if (qp != -1)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698