| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 // TODO(elad.alon): This function call could potentially reset the window, | 268 // TODO(elad.alon): This function call could potentially reset the window, |
| 269 // setting both PLR and RPLR to unknown. Consider (during upcoming | 269 // setting both PLR and RPLR to unknown. Consider (during upcoming |
| 270 // refactoring) passing an indication of such an event. | 270 // refactoring) passing an indication of such an event. |
| 271 packet_loss_tracker_.OnPacketAdded(seq_num, rtc::TimeMillis()); | 271 packet_loss_tracker_.OnPacketAdded(seq_num, rtc::TimeMillis()); |
| 272 } | 272 } |
| 273 } | 273 } |
| 274 | 274 |
| 275 void AudioSendStream::OnPacketFeedbackVector( | 275 void AudioSendStream::OnPacketFeedbackVector( |
| 276 const std::vector<PacketFeedback>& packet_feedback_vector) { | 276 const std::vector<PacketFeedback>& packet_feedback_vector) { |
| 277 // TODO(elad.alon): This fails in UT; fix and uncomment. | 277 // TODO(elad.alon): This fails in UT; fix and uncomment. |
| 278 // See: https://bugs.chromium.org/p/webrtc/issues/detail?id=7405 |
| 278 // RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 279 // RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
| 279 rtc::Optional<float> plr; | 280 rtc::Optional<float> plr; |
| 280 rtc::Optional<float> rplr; | 281 rtc::Optional<float> rplr; |
| 281 { | 282 { |
| 282 rtc::CritScope lock(&packet_loss_tracker_cs_); | 283 rtc::CritScope lock(&packet_loss_tracker_cs_); |
| 283 packet_loss_tracker_.OnPacketFeedbackVector(packet_feedback_vector); | 284 packet_loss_tracker_.OnPacketFeedbackVector(packet_feedback_vector); |
| 284 plr = packet_loss_tracker_.GetPacketLossRate(); | 285 plr = packet_loss_tracker_.GetPacketLossRate(); |
| 285 rplr = packet_loss_tracker_.GetRecoverablePacketLossRate(); | 286 rplr = packet_loss_tracker_.GetRecoverablePacketLossRate(); |
| 286 } | 287 } |
| 287 // TODO(elad.alon): If R/PLR go back to unknown, no indication is given that | 288 // TODO(elad.alon): If R/PLR go back to unknown, no indication is given that |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 LOG(LS_WARNING) << "SetVADStatus() failed."; | 422 LOG(LS_WARNING) << "SetVADStatus() failed."; |
| 422 return false; | 423 return false; |
| 423 } | 424 } |
| 424 } | 425 } |
| 425 } | 426 } |
| 426 return true; | 427 return true; |
| 427 } | 428 } |
| 428 | 429 |
| 429 } // namespace internal | 430 } // namespace internal |
| 430 } // namespace webrtc | 431 } // namespace webrtc |
| OLD | NEW |