Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Unified Diff: webrtc/audio/audio_send_stream.cc

Issue 2661043003: Allow ANA to receive RPLR (recoverable packet loss rate) indications (Closed)
Patch Set: CR respone Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/audio/audio_send_stream.cc
diff --git a/webrtc/audio/audio_send_stream.cc b/webrtc/audio/audio_send_stream.cc
index a146ceb8e977bc0d8f302dd665d2e46dff669f43..81aa63bc24c30fdfa9f88d327b05420c40b5ee65 100644
--- a/webrtc/audio/audio_send_stream.cc
+++ b/webrtc/audio/audio_send_stream.cc
@@ -11,6 +11,7 @@
#include "webrtc/audio/audio_send_stream.h"
#include <string>
+#include <vector>
#include "webrtc/audio/audio_state.h"
#include "webrtc/audio/conversion.h"
@@ -274,6 +275,7 @@ void AudioSendStream::OnNewTransportFeedbackVector(
rtc::CritScope lock(&packet_loss_tracker_cs_);
packet_loss_tracker_.OnNewTransportFeedbackVector(packet_feedback_vector);
const auto plr = packet_loss_tracker_.GetPacketLossRate();
+ const auto rplr = packet_loss_tracker_.GetRecoverablePacketLossRate();
// TODO(elad.alon): Resolve the following known issue - if PLR goes back
ossu 2017/03/22 13:41:18 I guess you've considered this: it looks like at l
elad.alon_webrtc.org 2017/03/22 15:15:55 I did consider it - even had a CL for it (https://
// to unknown, no indication is given that the previously sent value is no
// longer relevant. This will be taken care of with some refactoring which is
@@ -281,6 +283,9 @@ void AudioSendStream::OnNewTransportFeedbackVector(
if (plr) {
channel_proxy_->OnTwccBasedUplinkPacketLossRate(*plr);
}
+ if (rplr) {
stefan-webrtc 2017/03/22 12:15:46 Can plr and rplr be active simultaneously? Should
minyue-webrtc 2017/03/22 12:17:36 Yes, plr will be used for frame length adaptation
elad.alon_webrtc.org 2017/03/22 15:15:55 I'm not sure what comment would make things cleare
+ channel_proxy_->OnRecoverableUplinkPacketLossRate(*rplr);
+ }
}
const webrtc::AudioSendStream::Config& AudioSendStream::config() const {

Powered by Google App Engine
This is Rietveld 408576698