| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 Clock* const clock_; | 126 Clock* const clock_; |
| 127 RemoteBitrateObserver* const observer_; | 127 RemoteBitrateObserver* const observer_; |
| 128 std::unique_ptr<InterArrival> inter_arrival_; | 128 std::unique_ptr<InterArrival> inter_arrival_; |
| 129 std::unique_ptr<OveruseEstimator> estimator_; | 129 std::unique_ptr<OveruseEstimator> estimator_; |
| 130 OveruseDetector detector_; | 130 OveruseDetector detector_; |
| 131 RateStatistics incoming_bitrate_; | 131 RateStatistics incoming_bitrate_; |
| 132 std::list<Probe> probes_; | 132 std::list<Probe> probes_; |
| 133 size_t total_probes_received_; | 133 size_t total_probes_received_; |
| 134 int64_t first_packet_time_ms_; | 134 int64_t first_packet_time_ms_; |
| 135 int64_t last_update_ms_; | 135 int64_t last_update_ms_; |
| 136 bool uma_recorded_; |
| 136 | 137 |
| 137 rtc::CriticalSection crit_; | 138 rtc::CriticalSection crit_; |
| 138 Ssrcs ssrcs_ GUARDED_BY(&crit_); | 139 Ssrcs ssrcs_ GUARDED_BY(&crit_); |
| 139 AimdRateControl remote_rate_ GUARDED_BY(&crit_); | 140 AimdRateControl remote_rate_ GUARDED_BY(&crit_); |
| 140 | 141 |
| 141 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DelayBasedBwe); | 142 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DelayBasedBwe); |
| 142 }; | 143 }; |
| 143 | 144 |
| 144 } // namespace webrtc | 145 } // namespace webrtc |
| 145 | 146 |
| 146 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_ | 147 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_ |
| OLD | NEW |