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 17 matching lines...) Expand all Loading... |
28 class AlrDetector { | 28 class AlrDetector { |
29 public: | 29 public: |
30 AlrDetector(); | 30 AlrDetector(); |
31 ~AlrDetector(); | 31 ~AlrDetector(); |
32 | 32 |
33 void OnBytesSent(size_t bytes_sent, int64_t now_ms); | 33 void OnBytesSent(size_t bytes_sent, int64_t now_ms); |
34 | 34 |
35 // Set current estimated bandwidth. | 35 // Set current estimated bandwidth. |
36 void SetEstimatedBitrate(int bitrate_bps); | 36 void SetEstimatedBitrate(int bitrate_bps); |
37 | 37 |
38 // Returns true if currently in application-limited region. | 38 // Returns time in MS when application-limited regions started or zero if the |
39 bool InApplicationLimitedRegion(); | 39 // sender is currently not application-limited. |
| 40 int64_t GetApplicationLimitedRegionStartTime() const; |
40 | 41 |
41 private: | 42 private: |
42 RateStatistics rate_; | 43 RateStatistics rate_; |
43 int estimated_bitrate_bps_ = 0; | 44 int estimated_bitrate_bps_ = 0; |
44 bool application_limited_ = false; | 45 |
| 46 // Non-zero in ALR state. |
| 47 int64_t alr_started_time_ms_ = 0; |
45 }; | 48 }; |
46 | 49 |
47 } // namespace webrtc | 50 } // namespace webrtc |
48 | 51 |
49 #endif // WEBRTC_MODULES_PACING_ALR_DETECTOR_H_ | 52 #endif // WEBRTC_MODULES_PACING_ALR_DETECTOR_H_ |
OLD | NEW |