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_PACING_ALR_DETECTOR_H_ |
| 12 #define WEBRTC_MODULES_PACING_ALR_DETECTOR_H_ |
| 13 |
| 14 #include "webrtc/base/criticalsection.h" |
| 15 #include "webrtc/common_types.h" |
| 16 #include "webrtc/modules/pacing/paced_sender.h" |
| 17 #include "webrtc/typedefs.h" |
| 18 |
| 19 namespace webrtc { |
| 20 |
| 21 // Application limited region detector is a class that utilizes signals of |
| 22 // elapsed time and bytes sent to estimate whether network traffic is |
| 23 // currently limited by the application's ability to generate traffic. |
| 24 // |
| 25 // AlrDetector provides a signal that can be utilized to adjust |
| 26 // estimate bandwidth. |
| 27 // Note: This class is not thread-safe. |
| 28 class AlrDetector { |
| 29 public: |
| 30 AlrDetector(); |
| 31 ~AlrDetector(); |
| 32 void OnBytesSent(size_t bytes_sent, int64_t elapsed_time_ms); |
| 33 // Set current estimated bandwidth. |
| 34 void SetEstimatedBitrate(int bitrate_bps); |
| 35 // Returns true if currently in application-limited region. |
| 36 bool InApplicationLimitedRegion(); |
| 37 |
| 38 private: |
| 39 rtc::CriticalSection critsect_; |
| 40 int measurement_interval_bytes_sent_ GUARDED_BY(critsect_); |
| 41 int64_t measurement_interval_elapsed_time_ms_ GUARDED_BY(critsect_); |
| 42 int estimated_bitrate_bps_ GUARDED_BY(critsect_); |
| 43 // Number of consecutive periods over which we observe traffic is application |
| 44 // limited. |
| 45 int application_limited_count_ GUARDED_BY(critsect_); |
| 46 }; |
| 47 |
| 48 } // namespace webrtc |
| 49 |
| 50 #endif // WEBRTC_MODULES_PACING_ALR_DETECTOR_H_ |
OLD | NEW |