Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | |
| 3 * | |
| 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 | |
| 6 * tree. An additional intellectual property rights grant can be found | |
| 7 * in the file PATENTS. All contributing project authors may | |
| 8 * be found in the AUTHORS file in the root of the source tree. | |
| 9 */ | |
| 10 | |
| 11 #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | |
| 12 #define WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | |
| 13 | |
| 14 #include <initializer_list> | |
| 15 | |
| 16 #include "webrtc/base/criticalsection.h" | |
| 17 #include "webrtc/common_types.h" | |
| 18 #include "webrtc/modules/pacing/paced_sender.h" | |
| 19 | |
| 20 namespace webrtc { | |
| 21 | |
| 22 class Clock; | |
| 23 | |
| 24 // This class controls initiation of probing to estimate initial channel | |
| 25 // capacity. There is also support for probing during a session when max | |
| 26 // bitrate is adjusted by an application. | |
| 27 class ProbeController { | |
| 28 public: | |
| 29 ProbeController(PacedSender* pacer, Clock* clock); | |
| 30 | |
| 31 void SetBitrates(int min_bitrate_bps, | |
| 32 int start_bitrate_bps, | |
| 33 int max_bitrate_bps); | |
| 34 void SetEstimatedBitrate(int bitrate_bps); | |
| 35 void Process(); | |
| 36 | |
| 37 private: | |
| 38 void InitiateProbing(std::initializer_list<int> bitrates_to_probe, | |
| 39 int min_bitrate_to_probe_further_bps) | |
| 40 EXCLUSIVE_LOCKS_REQUIRED(critsect_); | |
| 41 enum class State { | |
| 42 // Initial state where no probing has been triggered yet. | |
| 43 kInit, | |
| 44 // Waiting for probing results to continue further probing. | |
| 45 kWaitForProbingResult, | |
|
philipel
2016/09/08 12:52:47
kWaitingForProbingResult
Irfan
2016/09/09 08:12:52
Done.
| |
| 46 // Probing is complete. | |
| 47 kProbingComplete, | |
| 48 }; | |
| 49 rtc::CriticalSection critsect_; | |
| 50 PacedSender* const pacer_; | |
| 51 Clock* const clock_; | |
| 52 State state_ GUARDED_BY(critsect_); | |
| 53 int min_bitrate_to_probe_further_bps_ GUARDED_BY(critsect_); | |
| 54 int64_t time_last_probing_initiated_ms_ GUARDED_BY(critsect_); | |
| 55 int estimated_bitrate_bps_ GUARDED_BY(critsect_); | |
| 56 int max_bitrate_bps_ GUARDED_BY(critsect_); | |
| 57 | |
| 58 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(ProbeController); | |
| 59 }; | |
| 60 | |
| 61 } // namespace webrtc | |
| 62 | |
| 63 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_CONTROLLER_H_ | |
| OLD | NEW |