| 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 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); |
| 40 | 40 |
| 41 void SetAlrEndedTimeMs(int64_t alr_end_time); |
| 42 |
| 43 void RequestProbe(uint32_t bitrate_bps); |
| 44 |
| 41 // Resets the ProbeController to a state equivalent to as if it was just | 45 // Resets the ProbeController to a state equivalent to as if it was just |
| 42 // created EXCEPT for |enable_periodic_alr_probing_|. | 46 // created EXCEPT for |enable_periodic_alr_probing_|. |
| 43 void Reset(); | 47 void Reset(); |
| 44 | 48 |
| 45 void Process(); | 49 void Process(); |
| 46 | 50 |
| 47 private: | 51 private: |
| 48 enum class State { | 52 enum class State { |
| 49 // Initial state where no probing has been triggered yet. | 53 // Initial state where no probing has been triggered yet. |
| 50 kInit, | 54 kInit, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 62 rtc::CriticalSection critsect_; | 66 rtc::CriticalSection critsect_; |
| 63 PacedSender* const pacer_; | 67 PacedSender* const pacer_; |
| 64 const Clock* const clock_; | 68 const Clock* const clock_; |
| 65 NetworkState network_state_ GUARDED_BY(critsect_); | 69 NetworkState network_state_ GUARDED_BY(critsect_); |
| 66 State state_ GUARDED_BY(critsect_); | 70 State state_ GUARDED_BY(critsect_); |
| 67 int64_t min_bitrate_to_probe_further_bps_ GUARDED_BY(critsect_); | 71 int64_t min_bitrate_to_probe_further_bps_ GUARDED_BY(critsect_); |
| 68 int64_t time_last_probing_initiated_ms_ GUARDED_BY(critsect_); | 72 int64_t time_last_probing_initiated_ms_ GUARDED_BY(critsect_); |
| 69 int64_t estimated_bitrate_bps_ GUARDED_BY(critsect_); | 73 int64_t estimated_bitrate_bps_ GUARDED_BY(critsect_); |
| 70 int64_t start_bitrate_bps_ GUARDED_BY(critsect_); | 74 int64_t start_bitrate_bps_ GUARDED_BY(critsect_); |
| 71 int64_t max_bitrate_bps_ GUARDED_BY(critsect_); | 75 int64_t max_bitrate_bps_ GUARDED_BY(critsect_); |
| 72 int64_t last_alr_probing_time_ GUARDED_BY(critsect_); | 76 int64_t last_bwe_drop_probing_time_ms_ GUARDED_BY(critsect_); |
| 77 rtc::Optional<int64_t> alr_end_time_ms_ GUARDED_BY(critsect_); |
| 73 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_); | 78 bool enable_periodic_alr_probing_ GUARDED_BY(critsect_); |
| 79 bool in_rapid_recovery_experiment_ GUARDED_BY(critsect_); |
| 74 | 80 |
| 75 // For WebRTC.BWE.MidCallProbing.* metric. | 81 // For WebRTC.BWE.MidCallProbing.* metric. |
| 76 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); | 82 bool mid_call_probing_waiting_for_result_ GUARDED_BY(&critsect_); |
| 77 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); | 83 int64_t mid_call_probing_bitrate_bps_ GUARDED_BY(&critsect_); |
| 78 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); | 84 int64_t mid_call_probing_succcess_threshold_ GUARDED_BY(&critsect_); |
| 79 | 85 |
| 80 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); | 86 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); |
| 81 }; | 87 }; |
| 82 | 88 |
| 83 } // namespace webrtc | 89 } // namespace webrtc |
| 84 | 90 |
| 85 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | 91 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ |
| OLD | NEW |