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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 | 133 |
134 void LogBwePacketLossEvent(int32_t bitrate, | 134 void LogBwePacketLossEvent(int32_t bitrate, |
135 uint8_t fraction_loss, | 135 uint8_t fraction_loss, |
136 int32_t total_packets) override { | 136 int32_t total_packets) override { |
137 rtc::CritScope lock(&crit_); | 137 rtc::CritScope lock(&crit_); |
138 if (event_log_) { | 138 if (event_log_) { |
139 event_log_->LogBwePacketLossEvent(bitrate, fraction_loss, total_packets); | 139 event_log_->LogBwePacketLossEvent(bitrate, fraction_loss, total_packets); |
140 } | 140 } |
141 } | 141 } |
142 | 142 |
| 143 void LogBwePacketDelayEvent(int32_t bitrate, |
| 144 BandwidthUsage detector_state) override { |
| 145 rtc::CritScope lock(&crit_); |
| 146 if (event_log_) { |
| 147 event_log_->LogBwePacketDelayEvent(bitrate, detector_state); |
| 148 } |
| 149 } |
| 150 |
143 void LogAudioNetworkAdaptation( | 151 void LogAudioNetworkAdaptation( |
144 const AudioNetworkAdaptor::EncoderRuntimeConfig& config) override { | 152 const AudioNetworkAdaptor::EncoderRuntimeConfig& config) override { |
145 rtc::CritScope lock(&crit_); | 153 rtc::CritScope lock(&crit_); |
146 if (event_log_) { | 154 if (event_log_) { |
147 event_log_->LogAudioNetworkAdaptation(config); | 155 event_log_->LogAudioNetworkAdaptation(config); |
148 } | 156 } |
149 } | 157 } |
150 | 158 |
151 void SetEventLog(RtcEventLog* event_log) { | 159 void SetEventLog(RtcEventLog* event_log) { |
152 rtc::CritScope lock(&crit_); | 160 rtc::CritScope lock(&crit_); |
(...skipping 3171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3324 int64_t min_rtt = 0; | 3332 int64_t min_rtt = 0; |
3325 if (_rtpRtcpModule->RTT(remoteSSRC, &rtt, &avg_rtt, &min_rtt, &max_rtt) != | 3333 if (_rtpRtcpModule->RTT(remoteSSRC, &rtt, &avg_rtt, &min_rtt, &max_rtt) != |
3326 0) { | 3334 0) { |
3327 return 0; | 3335 return 0; |
3328 } | 3336 } |
3329 return rtt; | 3337 return rtt; |
3330 } | 3338 } |
3331 | 3339 |
3332 } // namespace voe | 3340 } // namespace voe |
3333 } // namespace webrtc | 3341 } // namespace webrtc |
OLD | NEW |