OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
11 #include "webrtc/video/call_stats.h" | 11 #include "webrtc/video/call_stats.h" |
12 | 12 |
13 #include <assert.h> | |
14 | |
15 #include <algorithm> | 13 #include <algorithm> |
16 | 14 |
15 #include "webrtc/base/checks.h" | |
17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 16 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
17 #include "webrtc/system_wrappers/include/metrics.h" | |
18 #include "webrtc/system_wrappers/include/tick_util.h" | 18 #include "webrtc/system_wrappers/include/tick_util.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 namespace { | 21 namespace { |
22 // Time interval for updating the observers. | 22 // Time interval for updating the observers. |
23 const int64_t kUpdateIntervalMs = 1000; | 23 const int64_t kUpdateIntervalMs = 1000; |
24 // Weight factor to apply to the average rtt. | 24 // Weight factor to apply to the average rtt. |
25 const float kWeightFactor = 0.3f; | 25 const float kWeightFactor = 0.3f; |
26 | 26 |
27 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { | 27 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { |
28 // A rtt report is considered valid for this long. | 28 // A rtt report is considered valid for this long. |
29 const int64_t kRttTimeoutMs = 1500; | 29 const int64_t kRttTimeoutMs = 1500; |
30 while (!reports->empty() && | 30 while (!reports->empty() && |
31 (now - reports->front().time) > kRttTimeoutMs) { | 31 (now - reports->front().time) > kRttTimeoutMs) { |
32 reports->pop_front(); | 32 reports->pop_front(); |
33 } | 33 } |
34 } | 34 } |
35 | 35 |
36 int64_t GetMaxRttMs(std::list<CallStats::RttTime>* reports) { | 36 int64_t GetMaxRttMs(std::list<CallStats::RttTime>* reports) { |
37 if (reports->empty()) | |
38 return -1; | |
37 int64_t max_rtt_ms = 0; | 39 int64_t max_rtt_ms = 0; |
38 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); | 40 for (const CallStats::RttTime& rtt_time : *reports) |
39 it != reports->end(); ++it) { | 41 max_rtt_ms = std::max(rtt_time.rtt, max_rtt_ms); |
40 max_rtt_ms = std::max(it->rtt, max_rtt_ms); | |
41 } | |
42 return max_rtt_ms; | 42 return max_rtt_ms; |
43 } | 43 } |
44 | 44 |
45 int64_t GetAvgRttMs(std::list<CallStats::RttTime>* reports) { | 45 int64_t GetAvgRttMs(std::list<CallStats::RttTime>* reports) { |
46 if (reports->empty()) { | 46 if (reports->empty()) { |
47 return 0; | 47 return -1; |
48 } | 48 } |
49 int64_t sum = 0; | 49 int64_t sum = 0; |
50 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); | 50 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); |
51 it != reports->end(); ++it) { | 51 it != reports->end(); ++it) { |
52 sum += it->rtt; | 52 sum += it->rtt; |
53 } | 53 } |
54 return sum / reports->size(); | 54 return sum / reports->size(); |
55 } | 55 } |
56 | 56 |
57 void UpdateAvgRttMs(std::list<CallStats::RttTime>* reports, int64_t* avg_rtt) { | 57 void UpdateAvgRttMs(std::list<CallStats::RttTime>* reports, int64_t* avg_rtt) { |
58 uint32_t cur_rtt_ms = GetAvgRttMs(reports); | 58 int64_t cur_rtt_ms = GetAvgRttMs(reports); |
59 if (cur_rtt_ms == 0) { | 59 if (cur_rtt_ms == -1) { |
60 // Reset. | 60 // Reset. |
61 *avg_rtt = 0; | 61 *avg_rtt = -1; |
62 return; | 62 return; |
63 } | 63 } |
64 if (*avg_rtt == 0) { | 64 if (*avg_rtt == -1) { |
65 // Initialize. | 65 // Initialize. |
66 *avg_rtt = cur_rtt_ms; | 66 *avg_rtt = cur_rtt_ms; |
67 return; | 67 return; |
68 } | 68 } |
69 *avg_rtt = *avg_rtt * (1.0f - kWeightFactor) + cur_rtt_ms * kWeightFactor; | 69 *avg_rtt = *avg_rtt * (1.0f - kWeightFactor) + cur_rtt_ms * kWeightFactor; |
70 } | 70 } |
71 } // namespace | 71 } // namespace |
72 | 72 |
73 class RtcpObserver : public RtcpRttStats { | 73 class RtcpObserver : public RtcpRttStats { |
74 public: | 74 public: |
(...skipping 12 matching lines...) Expand all Loading... | |
87 private: | 87 private: |
88 CallStats* owner_; | 88 CallStats* owner_; |
89 | 89 |
90 RTC_DISALLOW_COPY_AND_ASSIGN(RtcpObserver); | 90 RTC_DISALLOW_COPY_AND_ASSIGN(RtcpObserver); |
91 }; | 91 }; |
92 | 92 |
93 CallStats::CallStats(Clock* clock) | 93 CallStats::CallStats(Clock* clock) |
94 : clock_(clock), | 94 : clock_(clock), |
95 rtcp_rtt_stats_(new RtcpObserver(this)), | 95 rtcp_rtt_stats_(new RtcpObserver(this)), |
96 last_process_time_(clock_->TimeInMilliseconds()), | 96 last_process_time_(clock_->TimeInMilliseconds()), |
97 max_rtt_ms_(0), | 97 max_rtt_ms_(-1), |
98 avg_rtt_ms_(0) {} | 98 avg_rtt_ms_(-1), |
åsapersson
2016/02/10 10:35:58
Note, now that rtt can be -1 if not set, there mig
sprang_webrtc
2016/02/15 09:21:29
Right, I updated the call from the rtp module to o
| |
99 sum_avg_rtt_ms_(0), | |
100 num_avg_rtt_(0), | |
101 time_of_first_rtt_ms_(-1) {} | |
99 | 102 |
100 CallStats::~CallStats() { | 103 CallStats::~CallStats() { |
101 assert(observers_.empty()); | 104 RTC_DCHECK(observers_.empty()); |
105 UpdateHistograms(); | |
102 } | 106 } |
103 | 107 |
104 int64_t CallStats::TimeUntilNextProcess() { | 108 int64_t CallStats::TimeUntilNextProcess() { |
105 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds(); | 109 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds(); |
106 } | 110 } |
107 | 111 |
108 int32_t CallStats::Process() { | 112 int32_t CallStats::Process() { |
109 rtc::CritScope cs(&crit_); | 113 rtc::CritScope cs(&crit_); |
110 int64_t now = clock_->TimeInMilliseconds(); | 114 int64_t now = clock_->TimeInMilliseconds(); |
111 if (now < last_process_time_ + kUpdateIntervalMs) | 115 if (now < last_process_time_ + kUpdateIntervalMs) |
112 return 0; | 116 return 0; |
113 | 117 |
114 last_process_time_ = now; | 118 last_process_time_ = now; |
115 | 119 |
116 RemoveOldReports(now, &reports_); | 120 RemoveOldReports(now, &reports_); |
117 max_rtt_ms_ = GetMaxRttMs(&reports_); | 121 max_rtt_ms_ = GetMaxRttMs(&reports_); |
118 UpdateAvgRttMs(&reports_, &avg_rtt_ms_); | 122 UpdateAvgRttMs(&reports_, &avg_rtt_ms_); |
119 | 123 |
120 // If there is a valid rtt, update all observers with the max rtt. | 124 // If there is a valid rtt, update all observers with the max rtt. |
121 // TODO(asapersson): Consider changing this to report the average rtt. | 125 if (max_rtt_ms_ >= 0) { |
122 if (max_rtt_ms_ > 0) { | |
123 for (std::list<CallStatsObserver*>::iterator it = observers_.begin(); | 126 for (std::list<CallStatsObserver*>::iterator it = observers_.begin(); |
124 it != observers_.end(); ++it) { | 127 it != observers_.end(); ++it) { |
125 (*it)->OnRttUpdate(avg_rtt_ms_, max_rtt_ms_); | 128 (*it)->OnRttUpdate(avg_rtt_ms_, max_rtt_ms_); |
126 } | 129 } |
130 // Sum for Histogram of average RTT reported over the entire call. | |
131 sum_avg_rtt_ms_ += avg_rtt_ms_; | |
132 ++num_avg_rtt_; | |
127 } | 133 } |
128 return 0; | 134 return 0; |
129 } | 135 } |
130 | 136 |
131 int64_t CallStats::avg_rtt_ms() const { | 137 int64_t CallStats::avg_rtt_ms() const { |
132 rtc::CritScope cs(&crit_); | 138 rtc::CritScope cs(&crit_); |
133 return avg_rtt_ms_; | 139 return avg_rtt_ms_; |
134 } | 140 } |
135 | 141 |
136 RtcpRttStats* CallStats::rtcp_rtt_stats() const { | 142 RtcpRttStats* CallStats::rtcp_rtt_stats() const { |
(...skipping 16 matching lines...) Expand all Loading... | |
153 it != observers_.end(); ++it) { | 159 it != observers_.end(); ++it) { |
154 if (*it == observer) { | 160 if (*it == observer) { |
155 observers_.erase(it); | 161 observers_.erase(it); |
156 return; | 162 return; |
157 } | 163 } |
158 } | 164 } |
159 } | 165 } |
160 | 166 |
161 void CallStats::OnRttUpdate(int64_t rtt) { | 167 void CallStats::OnRttUpdate(int64_t rtt) { |
162 rtc::CritScope cs(&crit_); | 168 rtc::CritScope cs(&crit_); |
163 reports_.push_back(RttTime(rtt, clock_->TimeInMilliseconds())); | 169 int64_t now_ms = clock_->TimeInMilliseconds(); |
170 reports_.push_back(RttTime(rtt, now_ms)); | |
171 if (time_of_first_rtt_ms_ == -1) | |
172 time_of_first_rtt_ms_ = now_ms; | |
173 } | |
174 | |
175 void CallStats::UpdateHistograms() { | |
176 rtc::CritScope cs(&crit_); | |
177 if (time_of_first_rtt_ms_ == -1 || num_avg_rtt_ < 1) | |
178 return; | |
179 | |
180 int64_t elapsed_sec = | |
181 (clock_->TimeInMilliseconds() - time_of_first_rtt_ms_) / 1000; | |
182 if (elapsed_sec >= metrics::kMinRunTimeInSeconds) { | |
183 int64_t avg_rtt_ms = (sum_avg_rtt_ms_ + num_avg_rtt_ / 2) / num_avg_rtt_; | |
184 RTC_HISTOGRAM_COUNTS_10000( | |
185 "WebRTC.Video.AverageRoundTripTimeInMilliseconds", avg_rtt_ms); | |
186 } | |
164 } | 187 } |
165 | 188 |
166 } // namespace webrtc | 189 } // namespace webrtc |
OLD | NEW |