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

Side by Side Diff: webrtc/modules/congestion_controller/trendline_estimator.cc

Issue 2489323002: Add a new overuse estimator for the delay based BWE behind experiment. (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
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #include "webrtc/modules/congestion_controller/trendline_estimator.h"
12
13 #include <algorithm>
14
15 #include "webrtc/base/logging.h"
16 #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h"
17 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h"
18
19 namespace webrtc {
20
21 enum { kDeltaCounterMax = 1000 };
22
23 TrendlineEstimator::TrendlineEstimator(size_t window_size,
24 double smoothing_coef,
25 double threshold_gain)
26 : window_size_(window_size),
27 smoothing_coef_(smoothing_coef),
28 threshold_gain_(threshold_gain),
29 num_of_deltas_(0),
30 accumulated_delay_(0),
31 smoothed_delay_(0),
32 last_smoothed_delay_(0),
33 accumulated_delay_hist_(),
34 sum_x_(0),
35 sum_y_(0),
36 sum_xy_(0),
37 sum_x2_(0),
38 trendline_(0) {}
39
40 TrendlineEstimator::~TrendlineEstimator() {}
41
42 void TrendlineEstimator::Update(double recv_delta_ms,
43 double send_delta_ms,
44 int64_t now_ms) {
45 const double delta_ms = recv_delta_ms - send_delta_ms;
46 ++num_of_deltas_;
47 if (num_of_deltas_ > kDeltaCounterMax) {
48 num_of_deltas_ = kDeltaCounterMax;
49 }
50
51 // Exponential backoff filter.
52 accumulated_delay_ += delta_ms;
53 BWE_TEST_LOGGING_PLOT(1, "accumulated_delay_ms", now_ms, accumulated_delay_);
54 last_smoothed_delay_ = smoothed_delay_;
55 smoothed_delay_ = smoothing_coef_ * smoothed_delay_ +
56 (1 - smoothing_coef_) * accumulated_delay_;
57 BWE_TEST_LOGGING_PLOT(1, "smoothed_delay_ms", now_ms, smoothed_delay_);
58
59 // Simple linear regression.
60 accumulated_delay_hist_.push_back(std::make_pair(now_ms, smoothed_delay_));
61 sum_x_ += now_ms;
62 sum_y_ += smoothed_delay_;
63 sum_xy_ += static_cast<double>(now_ms) * static_cast<double>(smoothed_delay_);
64 sum_x2_ += static_cast<double>(now_ms) * static_cast<double>(now_ms);
65 if (accumulated_delay_hist_.size() > window_size_) {
66 sum_x_ -= accumulated_delay_hist_.front().first;
67 sum_y_ -= accumulated_delay_hist_.front().second;
68 sum_xy_ -= static_cast<double>(accumulated_delay_hist_.front().first) *
69 static_cast<double>(accumulated_delay_hist_.front().second);
70 sum_x2_ -= static_cast<double>(accumulated_delay_hist_.front().first) *
71 static_cast<double>(accumulated_delay_hist_.front().first);
72 accumulated_delay_hist_.pop_front();
73 }
74 if (accumulated_delay_hist_.size() == window_size_) {
75 trendline_ = (window_size_ * sum_xy_ - sum_x_ * sum_y_) /
76 (window_size_ * sum_x2_ - sum_x_ * sum_x_);
77 }
78
79 BWE_TEST_LOGGING_PLOT(1, "trendline_slope", now_ms, trendline_);
80 }
81
82 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698