OLD | NEW |
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 |
11 #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | 11 #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ |
12 #define WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | 12 #define WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ |
13 | 13 |
14 #include <initializer_list> | 14 #include <initializer_list> |
15 | 15 |
16 #include "webrtc/base/criticalsection.h" | 16 #include "webrtc/base/criticalsection.h" |
17 #include "webrtc/common_types.h" | 17 #include "webrtc/common_types.h" |
18 #include "webrtc/modules/pacing/paced_sender.h" | 18 #include "webrtc/modules/pacing/paced_sender.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
22 class Clock; | 22 class Clock; |
23 | 23 |
24 // This class controls initiation of probing to estimate initial channel | 24 // This class controls initiation of probing to estimate initial channel |
25 // capacity. There is also support for probing during a session when max | 25 // capacity. There is also support for probing during a session when max |
26 // bitrate is adjusted by an application. | 26 // bitrate is adjusted by an application. |
27 class ProbeController { | 27 class ProbeController { |
28 public: | 28 public: |
29 ProbeController(PacedSender* pacer, Clock* clock); | 29 ProbeController(PacedSender* pacer, const Clock* clock); |
30 | 30 |
31 void SetBitrates(int64_t min_bitrate_bps, | 31 void SetBitrates(int64_t min_bitrate_bps, |
32 int64_t start_bitrate_bps, | 32 int64_t start_bitrate_bps, |
33 int64_t max_bitrate_bps); | 33 int64_t max_bitrate_bps); |
34 | 34 |
35 void OnNetworkStateChanged(NetworkState state); | 35 void OnNetworkStateChanged(NetworkState state); |
36 | 36 |
37 void SetEstimatedBitrate(int64_t bitrate_bps); | 37 void SetEstimatedBitrate(int64_t bitrate_bps); |
38 | 38 |
39 void EnablePeriodicAlrProbing(bool enable); | 39 void EnablePeriodicAlrProbing(bool enable); |
(...skipping 14 matching lines...) Expand all Loading... |
54 kProbingComplete, | 54 kProbingComplete, |
55 }; | 55 }; |
56 | 56 |
57 void InitiateExponentialProbing() EXCLUSIVE_LOCKS_REQUIRED(critsect_); | 57 void InitiateExponentialProbing() EXCLUSIVE_LOCKS_REQUIRED(critsect_); |
58 void InitiateProbing(int64_t now_ms, | 58 void InitiateProbing(int64_t now_ms, |
59 std::initializer_list<int64_t> bitrates_to_probe, | 59 std::initializer_list<int64_t> bitrates_to_probe, |
60 bool probe_further) EXCLUSIVE_LOCKS_REQUIRED(critsect_); | 60 bool probe_further) EXCLUSIVE_LOCKS_REQUIRED(critsect_); |
61 | 61 |
62 rtc::CriticalSection critsect_; | 62 rtc::CriticalSection critsect_; |
63 PacedSender* const pacer_; | 63 PacedSender* const pacer_; |
64 Clock* const clock_; | 64 const Clock* const clock_; |
65 NetworkState network_state_ GUARDED_BY(critsect_); | 65 NetworkState network_state_ GUARDED_BY(critsect_); |
66 State state_ GUARDED_BY(critsect_); | 66 State state_ GUARDED_BY(critsect_); |
67 int64_t min_bitrate_to_probe_further_bps_ GUARDED_BY(critsect_); | 67 int64_t min_bitrate_to_probe_further_bps_ GUARDED_BY(critsect_); |
68 int64_t time_last_probing_initiated_ms_ GUARDED_BY(critsect_); | 68 int64_t time_last_probing_initiated_ms_ GUARDED_BY(critsect_); |
69 int64_t estimated_bitrate_bps_ GUARDED_BY(critsect_); | 69 int64_t estimated_bitrate_bps_ GUARDED_BY(critsect_); |
70 int64_t start_bitrate_bps_ GUARDED_BY(critsect_); | 70 int64_t start_bitrate_bps_ GUARDED_BY(critsect_); |
71 int64_t max_bitrate_bps_ GUARDED_BY(critsect_); | 71 int64_t max_bitrate_bps_ GUARDED_BY(critsect_); |
72 int64_t last_alr_probing_time_ GUARDED_BY(critsect_); | 72 int64_t last_alr_probing_time_ GUARDED_BY(critsect_); |
73 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_); | 73 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_); |
74 | 74 |
75 // For WebRTC.BWE.MidCallProbing.* metric. | 75 // For WebRTC.BWE.MidCallProbing.* metric. |
76 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); | 76 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); |
77 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); | 77 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); |
78 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); | 78 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); |
79 | 79 |
80 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); | 80 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); |
81 }; | 81 }; |
82 | 82 |
83 } // namespace webrtc | 83 } // namespace webrtc |
84 | 84 |
85 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | 85 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ |
OLD | NEW |