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

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

Issue 1669623004: Use CallStats for RTT in Call, rather than VideoSendStream::GetRtt() (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Cleanup Created 4 years, 10 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 unified diff | Download patch
OLDNEW
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
(...skipping 16 matching lines...) Expand all
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
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) {}
99 99
100 CallStats::~CallStats() { 100 CallStats::~CallStats() {
101 assert(observers_.empty()); 101 assert(observers_.empty());
102 } 102 }
103 103
104 int64_t CallStats::TimeUntilNextProcess() { 104 int64_t CallStats::TimeUntilNextProcess() {
105 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds(); 105 return last_process_time_ + kUpdateIntervalMs - clock_->TimeInMilliseconds();
106 } 106 }
107 107
108 int32_t CallStats::Process() { 108 int32_t CallStats::Process() {
109 rtc::CritScope cs(&crit_); 109 rtc::CritScope cs(&crit_);
110 int64_t now = clock_->TimeInMilliseconds(); 110 int64_t now = clock_->TimeInMilliseconds();
111 if (now < last_process_time_ + kUpdateIntervalMs) 111 if (now < last_process_time_ + kUpdateIntervalMs)
112 return 0; 112 return 0;
113 113
114 last_process_time_ = now; 114 last_process_time_ = now;
115 115
116 RemoveOldReports(now, &reports_); 116 RemoveOldReports(now, &reports_);
117 max_rtt_ms_ = GetMaxRttMs(&reports_); 117 max_rtt_ms_ = GetMaxRttMs(&reports_);
118 UpdateAvgRttMs(&reports_, &avg_rtt_ms_); 118 UpdateAvgRttMs(&reports_, &avg_rtt_ms_);
119 119
120 // If there is a valid rtt, update all observers with the max rtt. 120 // If there is a valid rtt, update all observers with the max rtt.
121 // TODO(asapersson): Consider changing this to report the average rtt. 121 // TODO(asapersson): Consider changing this to report the average rtt.
åsapersson 2016/02/05 13:50:12 this todo seems no longer valid, maybe remove
sprang 2016/02/05 14:10:22 Done.
122 if (max_rtt_ms_ > 0) { 122 if (max_rtt_ms_ >= 0) {
123 for (std::list<CallStatsObserver*>::iterator it = observers_.begin(); 123 for (std::list<CallStatsObserver*>::iterator it = observers_.begin();
124 it != observers_.end(); ++it) { 124 it != observers_.end(); ++it) {
125 (*it)->OnRttUpdate(avg_rtt_ms_, max_rtt_ms_); 125 (*it)->OnRttUpdate(avg_rtt_ms_, max_rtt_ms_);
126 } 126 }
127 } 127 }
128 return 0; 128 return 0;
129 } 129 }
130 130
131 int64_t CallStats::avg_rtt_ms() const { 131 int64_t CallStats::avg_rtt_ms() const {
132 rtc::CritScope cs(&crit_); 132 rtc::CritScope cs(&crit_);
(...skipping 24 matching lines...) Expand all
157 } 157 }
158 } 158 }
159 } 159 }
160 160
161 void CallStats::OnRttUpdate(int64_t rtt) { 161 void CallStats::OnRttUpdate(int64_t rtt) {
162 rtc::CritScope cs(&crit_); 162 rtc::CritScope cs(&crit_);
163 reports_.push_back(RttTime(rtt, clock_->TimeInMilliseconds())); 163 reports_.push_back(RttTime(rtt, clock_->TimeInMilliseconds()));
164 } 164 }
165 165
166 } // namespace webrtc 166 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698