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

Side by Side Diff: webrtc/modules/congestion_controller/delay_based_bwe.h

Issue 2827333005: Moving overhead counting to bitrate estimators.
Patch Set: Created 3 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) 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 int64_t last_seen_packet_ms_; 98 int64_t last_seen_packet_ms_;
99 bool uma_recorded_; 99 bool uma_recorded_;
100 AimdRateControl rate_control_; 100 AimdRateControl rate_control_;
101 ProbeBitrateEstimator probe_bitrate_estimator_; 101 ProbeBitrateEstimator probe_bitrate_estimator_;
102 size_t trendline_window_size_; 102 size_t trendline_window_size_;
103 double trendline_smoothing_coeff_; 103 double trendline_smoothing_coeff_;
104 double trendline_threshold_gain_; 104 double trendline_threshold_gain_;
105 int consecutive_delayed_feedbacks_; 105 int consecutive_delayed_feedbacks_;
106 uint32_t last_logged_bitrate_; 106 uint32_t last_logged_bitrate_;
107 BandwidthUsage last_logged_state_; 107 BandwidthUsage last_logged_state_;
108 const bool send_side_bwe_with_overhead_;
108 109
109 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DelayBasedBwe); 110 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DelayBasedBwe);
110 }; 111 };
111 112
112 } // namespace webrtc 113 } // namespace webrtc
113 114
114 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_ 115 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698