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

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

Issue 2997883002: Video/Screenshare loopback tool.
Patch Set: Rebase Created 3 years, 3 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_); 78 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_);
79 int64_t time_of_last_large_drop_ms_ GUARDED_BY(critsect_); 79 int64_t time_of_last_large_drop_ms_ GUARDED_BY(critsect_);
80 int64_t bitrate_before_last_large_drop_bps_ GUARDED_BY(critsect_); 80 int64_t bitrate_before_last_large_drop_bps_ GUARDED_BY(critsect_);
81 81
82 bool in_rapid_recovery_experiment_ GUARDED_BY(critsect_); 82 bool in_rapid_recovery_experiment_ GUARDED_BY(critsect_);
83 // For WebRTC.BWE.MidCallProbing.* metric. 83 // For WebRTC.BWE.MidCallProbing.* metric.
84 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); 84 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_);
85 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); 85 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_);
86 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); 86 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_);
87 87
88 bool in_alr = false;
89
88 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); 90 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController);
89 }; 91 };
90 92
91 } // namespace webrtc 93 } // namespace webrtc
92 94
93 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ 95 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698