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

Side by Side Diff: webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h

Issue 2786353002: Add loss-based BWE experiment which allows us to try different parameters. (Closed)
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) 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 * FEC and NACK added bitrate is handled outside class 10 * FEC and NACK added bitrate is handled outside class
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 uint32_t delay_based_bitrate_bps_; 92 uint32_t delay_based_bitrate_bps_;
93 int64_t time_last_decrease_ms_; 93 int64_t time_last_decrease_ms_;
94 int64_t first_report_time_ms_; 94 int64_t first_report_time_ms_;
95 int initially_lost_packets_; 95 int initially_lost_packets_;
96 int bitrate_at_2_seconds_kbps_; 96 int bitrate_at_2_seconds_kbps_;
97 UmaState uma_update_state_; 97 UmaState uma_update_state_;
98 std::vector<bool> rampup_uma_stats_updated_; 98 std::vector<bool> rampup_uma_stats_updated_;
99 RtcEventLog* event_log_; 99 RtcEventLog* event_log_;
100 int64_t last_rtc_event_log_ms_; 100 int64_t last_rtc_event_log_ms_;
101 bool in_timeout_experiment_; 101 bool in_timeout_experiment_;
102 float low_loss_threshold_;
103 float high_loss_threshold_;
104 uint32_t bitrate_threshold_bps_;
102 }; 105 };
103 } // namespace webrtc 106 } // namespace webrtc
104 #endif // WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_ 107 #endif // WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698