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 #include "webrtc/modules/congestion_controller/probing_interval_estimator.h" | 11 #include "webrtc/modules/congestion_controller/probing_interval_estimator.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include <utility> | 14 #include <utility> |
15 | 15 |
16 namespace webrtc { | 16 namespace webrtc { |
17 | 17 |
18 namespace { | 18 namespace { |
19 constexpr int kMinIntervalMs = 2000; | 19 constexpr int kMinIntervalMs = 2000; |
20 constexpr int kMaxIntervalMs = 50000; | 20 constexpr int kMaxIntervalMs = 50000; |
21 } | 21 } |
22 | 22 |
23 ProbingIntervalEstimator::ProbingIntervalEstimator( | 23 ProbingIntervalEstimator::ProbingIntervalEstimator( |
24 const AimdRateControl* aimd_rate_control) | 24 const AimdRateControl* aimd_rate_control) |
25 : ProbingIntervalEstimator(kMinIntervalMs, | 25 : ProbingIntervalEstimator(kMinIntervalMs, |
26 kMaxIntervalMs, | 26 kMaxIntervalMs, |
27 aimd_rate_control) {} | 27 aimd_rate_control) {} |
28 | 28 |
29 ProbingIntervalEstimator::ProbingIntervalEstimator( | 29 ProbingIntervalEstimator::ProbingIntervalEstimator( |
30 int min_interval_ms, | 30 int64_t min_interval_ms, |
31 int max_interval_ms, | 31 int64_t max_interval_ms, |
32 const AimdRateControl* aimd_rate_control) | 32 const AimdRateControl* aimd_rate_control) |
33 : min_interval_ms_(min_interval_ms), | 33 : min_interval_ms_(min_interval_ms), |
34 max_interval_ms_(max_interval_ms), | 34 max_interval_ms_(max_interval_ms), |
35 aimd_rate_control_(aimd_rate_control) {} | 35 aimd_rate_control_(aimd_rate_control) {} |
36 | 36 |
37 rtc::Optional<int> ProbingIntervalEstimator::GetIntervalMs() const { | 37 rtc::Optional<int64_t> ProbingIntervalEstimator::GetIntervalMs() const { |
38 rtc::Optional<int> bitrate_drop = | 38 rtc::Optional<int> bitrate_drop = |
39 aimd_rate_control_->GetLastBitrateDecreaseBps(); | 39 aimd_rate_control_->GetLastBitrateDecreaseBps(); |
40 int increase_rate = aimd_rate_control_->GetNearMaxIncreaseRateBps(); | 40 int increase_rate = aimd_rate_control_->GetNearMaxIncreaseRateBps(); |
41 | 41 |
42 if (!bitrate_drop || increase_rate <= 0) | 42 if (!bitrate_drop || increase_rate <= 0) |
43 return rtc::Optional<int>(); | 43 return rtc::Optional<int64_t>(); |
44 | 44 |
45 return rtc::Optional<int>(std::min( | 45 return rtc::Optional<int64_t>(std::min( |
46 max_interval_ms_, | 46 max_interval_ms_, |
47 std::max(1000 * (*bitrate_drop) / increase_rate, min_interval_ms_))); | 47 std::max(static_cast<int64_t>(1000 * (*bitrate_drop) / increase_rate), |
| 48 min_interval_ms_))); |
48 } | 49 } |
49 | 50 |
50 } // namespace webrtc | 51 } // namespace webrtc |
OLD | NEW |