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

Unified Diff: webrtc/voice_engine/channel_proxy.cc

Issue 2638083002: Attach TransportFeedbackPacketLossTracker to ANA (PLR only) (Closed)
Patch Set: CR response 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
« webrtc/voice_engine/channel.cc ('K') | « webrtc/voice_engine/channel_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/channel_proxy.cc
diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
index 7f6e96c97c331dd787649ad2749089fa8edf55e1..eb4eae4cac69f2cf7aba57ae2026ac1097cc9b5e 100644
--- a/webrtc/voice_engine/channel_proxy.cc
+++ b/webrtc/voice_engine/channel_proxy.cc
@@ -367,6 +367,10 @@ bool ChannelProxy::SetSendCNPayloadType(int type,
return channel()->SetSendCNPayloadType(type, frequency) == 0;
}
+void ChannelProxy::OnTwccBasedUplinkPacketLossRate(float packet_loss_rate) {
stefan-webrtc 2017/03/22 12:03:01 Most methods here have thread checks. Should this
the sun 2017/03/22 12:06:42 Yes.
elad.alon_webrtc.org 2017/03/22 14:34:47 Done.
+ channel()->OnTwccBasedUplinkPacketLossRate(packet_loss_rate);
+}
+
Channel* ChannelProxy::channel() const {
RTC_DCHECK(channel_owner_.channel());
return channel_owner_.channel();
« webrtc/voice_engine/channel.cc ('K') | « webrtc/voice_engine/channel_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698