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) |