From 35fdb2a91474c4b3f2a34ad9a65f723fe29804b3 Mon Sep 17 00:00:00 2001 From: pbos Date: Tue, 3 May 2016 03:32:10 -0700 Subject: [PATCH] Log WebRTC.Video.AVSyncOffsetInMs. BUG= R=asapersson@webrtc.org Review-Url: https://codereview.webrtc.org/1941993002 Cr-Commit-Position: refs/heads/master@{#12605} --- webrtc/video/receive_statistics_proxy.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/webrtc/video/receive_statistics_proxy.cc b/webrtc/video/receive_statistics_proxy.cc index 97c1cf17b6..0b8f12bcfe 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)