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

Side by Side Diff: webrtc/video/send_delay_stats.cc

Issue 2494423002: Add ToString method to AggregatedStats and log stats at the end of a call. (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « webrtc/video/receive_statistics_proxy.cc ('k') | webrtc/video/stats_counter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 27 matching lines...) Expand all
38 } 38 }
39 UpdateHistograms(); 39 UpdateHistograms();
40 } 40 }
41 41
42 void SendDelayStats::UpdateHistograms() { 42 void SendDelayStats::UpdateHistograms() {
43 rtc::CritScope lock(&crit_); 43 rtc::CritScope lock(&crit_);
44 for (const auto& it : send_delay_counters_) { 44 for (const auto& it : send_delay_counters_) {
45 AggregatedStats stats = it.second->GetStats(); 45 AggregatedStats stats = it.second->GetStats();
46 if (stats.num_samples >= kMinRequiredPeriodicSamples) { 46 if (stats.num_samples >= kMinRequiredPeriodicSamples) {
47 RTC_HISTOGRAM_COUNTS_10000("WebRTC.Video.SendDelayInMs", stats.average); 47 RTC_HISTOGRAM_COUNTS_10000("WebRTC.Video.SendDelayInMs", stats.average);
48 LOG(LS_INFO) << "WebRTC.Video.SendDelayInMs, " << stats.ToString();
48 } 49 }
49 } 50 }
50 } 51 }
51 52
52 void SendDelayStats::AddSsrcs(const VideoSendStream::Config& config) { 53 void SendDelayStats::AddSsrcs(const VideoSendStream::Config& config) {
53 rtc::CritScope lock(&crit_); 54 rtc::CritScope lock(&crit_);
54 if (ssrcs_.size() > kMaxSsrcMapSize) 55 if (ssrcs_.size() > kMaxSsrcMapSize)
55 return; 56 return;
56 for (const auto& ssrc : config.rtp.ssrcs) 57 for (const auto& ssrc : config.rtp.ssrcs)
57 ssrcs_.insert(ssrc); 58 ssrcs_.insert(ssrc);
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 auto it = packets->begin(); 110 auto it = packets->begin();
110 if (now - it->second.capture_time_ms < kMaxSentPacketDelayMs) 111 if (now - it->second.capture_time_ms < kMaxSentPacketDelayMs)
111 break; 112 break;
112 113
113 packets->erase(it); 114 packets->erase(it);
114 ++num_old_packets_; 115 ++num_old_packets_;
115 } 116 }
116 } 117 }
117 118
118 } // namespace webrtc 119 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/video/receive_statistics_proxy.cc ('k') | webrtc/video/stats_counter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698