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

Side by Side Diff: webrtc/base/rate_statistics.cc

Issue 1908893003: Improve the behavior when the BWE times out and when we have too little data to determine the incom… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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/base/rate_statistics.h" 11 #include "webrtc/base/rate_statistics.h"
12 12
13 #include <assert.h> 13 #include <algorithm>
14 14
15 namespace webrtc { 15 namespace webrtc {
16 16
17 RateStatistics::RateStatistics(uint32_t window_size_ms, float scale) 17 RateStatistics::RateStatistics(uint32_t window_size_ms, float scale)
18 : num_buckets_(window_size_ms + 1), // N ms in (N+1) buckets. 18 : num_buckets_(window_size_ms + 1), // N ms in (N+1) buckets.
19 buckets_(new size_t[num_buckets_]()), 19 buckets_(new size_t[num_buckets_]()),
20 accumulated_count_(0), 20 accumulated_count_(0),
21 oldest_time_(0), 21 oldest_time_(0),
22 oldest_index_(0), 22 oldest_index_(0),
23 scale_(scale / (num_buckets_ - 1)) {} 23 scale_(scale) {}
24 24
25 RateStatistics::~RateStatistics() {} 25 RateStatistics::~RateStatistics() {}
26 26
27 void RateStatistics::Reset() { 27 void RateStatistics::Reset() {
28 accumulated_count_ = 0; 28 accumulated_count_ = 0;
29 oldest_time_ = 0; 29 oldest_time_ = 0;
30 oldest_index_ = 0; 30 oldest_index_ = 0;
31 for (int i = 0; i < num_buckets_; i++) { 31 for (int i = 0; i < num_buckets_; i++) {
32 buckets_[i] = 0; 32 buckets_[i] = 0;
33 } 33 }
34 } 34 }
35 35
36 void RateStatistics::Update(size_t count, int64_t now_ms) { 36 void RateStatistics::Update(size_t count, int64_t now_ms) {
37 if (now_ms < oldest_time_) { 37 if (now_ms < oldest_time_) {
38 // Too old data is ignored. 38 // Too old data is ignored.
39 return; 39 return;
40 } 40 }
41 41
42 EraseOld(now_ms); 42 EraseOld(now_ms);
43 43
44 int now_offset = static_cast<int>(now_ms - oldest_time_); 44 int now_offset = static_cast<int>(now_ms - oldest_time_);
45 assert(now_offset < num_buckets_); 45 assert(now_offset < num_buckets_);
sprang_webrtc 2016/04/22 10:36:58 dcheck
46 int index = oldest_index_ + now_offset; 46 int index = oldest_index_ + now_offset;
47 if (index >= num_buckets_) { 47 if (index >= num_buckets_) {
48 index -= num_buckets_; 48 index -= num_buckets_;
49 } 49 }
50 buckets_[index] += count; 50 buckets_[index] += count;
51 accumulated_count_ += count; 51 accumulated_count_ += count;
52 } 52 }
53 53
54 uint32_t RateStatistics::Rate(int64_t now_ms) { 54 uint32_t RateStatistics::Rate(int64_t now_ms) {
55 EraseOld(now_ms); 55 EraseOld(now_ms);
56 return static_cast<uint32_t>(accumulated_count_ * scale_ + 0.5f); 56 float scale = scale_ / (now_ms - oldest_time_ + 1);
57 return static_cast<uint32_t>(accumulated_count_ * scale + 0.5f);
57 } 58 }
58 59
59 void RateStatistics::EraseOld(int64_t now_ms) { 60 void RateStatistics::EraseOld(int64_t now_ms) {
60 int64_t new_oldest_time = now_ms - num_buckets_ + 1; 61 int64_t new_oldest_time = now_ms - num_buckets_ + 1;
61 if (new_oldest_time <= oldest_time_) { 62 if (new_oldest_time <= oldest_time_) {
63 if (accumulated_count_ == 0)
64 oldest_time_ = now_ms;
62 return; 65 return;
63 } 66 }
64
65 while (oldest_time_ < new_oldest_time) { 67 while (oldest_time_ < new_oldest_time) {
66 size_t count_in_oldest_bucket = buckets_[oldest_index_]; 68 size_t count_in_oldest_bucket = buckets_[oldest_index_];
67 assert(accumulated_count_ >= count_in_oldest_bucket); 69 assert(accumulated_count_ >= count_in_oldest_bucket);
68 accumulated_count_ -= count_in_oldest_bucket; 70 accumulated_count_ -= count_in_oldest_bucket;
69 buckets_[oldest_index_] = 0; 71 buckets_[oldest_index_] = 0;
70 if (++oldest_index_ >= num_buckets_) { 72 if (++oldest_index_ >= num_buckets_) {
71 oldest_index_ = 0; 73 oldest_index_ = 0;
72 } 74 }
73 ++oldest_time_; 75 ++oldest_time_;
74 if (accumulated_count_ == 0) { 76 if (accumulated_count_ == 0) {
75 // This guarantees we go through all the buckets at most once, even if 77 // This guarantees we go through all the buckets at most once, even if
76 // |new_oldest_time| is far greater than |oldest_time_|. 78 // |new_oldest_time| is far greater than |oldest_time_|.
79 new_oldest_time = now_ms;
77 break; 80 break;
78 } 81 }
79 } 82 }
80 oldest_time_ = new_oldest_time; 83 oldest_time_ = new_oldest_time;
81 } 84 }
82 85
83 } // namespace webrtc 86 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/rate_statistics_unittest.cc » ('j') | webrtc/base/rate_statistics_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698