OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 namespace rtc { | 25 namespace rtc { |
26 struct SentPacket; | 26 struct SentPacket; |
27 } | 27 } |
28 | 28 |
29 namespace webrtc { | 29 namespace webrtc { |
30 | 30 |
31 class BitrateController; | 31 class BitrateController; |
32 class Clock; | 32 class Clock; |
33 class ProbeController; | 33 class ProbeController; |
34 class ProcessThread; | |
35 class RateLimiter; | 34 class RateLimiter; |
36 class RemoteBitrateEstimator; | 35 class RemoteBitrateEstimator; |
37 class RemoteBitrateObserver; | 36 class RemoteBitrateObserver; |
38 class RtcEventLog; | 37 class RtcEventLog; |
39 class TransportFeedbackObserver; | 38 class TransportFeedbackObserver; |
40 | 39 |
41 class CongestionController : public CallStatsObserver, public Module { | 40 class CongestionController : public CallStatsObserver, public Module { |
42 public: | 41 public: |
43 // Observer class for bitrate changes announced due to change in bandwidth | 42 // Observer class for bitrate changes announced due to change in bandwidth |
44 // estimate or due to that the send pacer is full. Fraction loss and rtt is | 43 // estimate or due to that the send pacer is full. Fraction loss and rtt is |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 uint8_t last_reported_fraction_loss_ GUARDED_BY(critsect_); | 131 uint8_t last_reported_fraction_loss_ GUARDED_BY(critsect_); |
133 int64_t last_reported_rtt_ GUARDED_BY(critsect_); | 132 int64_t last_reported_rtt_ GUARDED_BY(critsect_); |
134 NetworkState network_state_ GUARDED_BY(critsect_); | 133 NetworkState network_state_ GUARDED_BY(critsect_); |
135 | 134 |
136 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(CongestionController); | 135 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(CongestionController); |
137 }; | 136 }; |
138 | 137 |
139 } // namespace webrtc | 138 } // namespace webrtc |
140 | 139 |
141 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_CONGESTION_CONTROLLER_H_ | 140 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_CONGESTION_CONTROLLER_H_ |
OLD | NEW |