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

Unified Diff: webrtc/voice_engine/channel_proxy.cc

Issue 2638083002: Attach TransportFeedbackPacketLossTracker to ANA (PLR only) (Closed)
Patch Set: TODO replaced by task (7173). Created 3 years, 10 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/voice_engine/channel_proxy.cc
diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
index b3c3a98507939914a414a487d1c9683e3b86a859..b720fc30d6211ef33d6f6fe8c1ed4a3c7dd18a67 100644
--- a/webrtc/voice_engine/channel_proxy.cc
+++ b/webrtc/voice_engine/channel_proxy.cc
@@ -297,6 +297,14 @@ void ChannelProxy::SetRtcpRttStats(RtcpRttStats* rtcp_rtt_stats) {
channel()->SetRtcpRttStats(rtcp_rtt_stats);
}
+void ChannelProxy::HandleTransportFeedback(
+ const std::vector<uint16_t>& packets_sent_since_last_feedback,
+ const rtcp::TransportFeedback& feedback) {
+ RTC_DCHECK(thread_checker_.CalledOnValidThread());
+ channel()->HandleTransportFeedback(packets_sent_since_last_feedback,
+ feedback);
+}
+
Channel* ChannelProxy::channel() const {
RTC_DCHECK(channel_owner_.channel());
return channel_owner_.channel();
« webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h ('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