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

Unified Diff: webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc

Issue 2974453002: Protected streams report RTP messages directly to the FlexFec streams (Closed)
Patch Set: Created 3 years, 5 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/modules/rtp_rtcp/source/flexfec_receiver.cc
diff --git a/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc b/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc
index 13899d5e5feec54a1f9d2b95a606a452d736d184..870fe4ce1747b3118048eaef2d99819d72f393dc 100644
--- a/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc
+++ b/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc
@@ -59,6 +59,9 @@ FecPacketCounter FlexfecReceiver::GetPacketCounter() const {
return packet_counter_;
}
+// TODO(eladalon): We should be able to avoid FlexFEC-recovered packets
+// reaching back here, by making the OnRtpPacket() function take a parameter
+// such as |is_recovered|, which would be |true| for FlexFEC-recovered packets.
stefan-webrtc 2017/07/07 09:36:24 Seems a bit ugly to me since all rtp packet sinks
eladalon 2017/07/07 14:16:24 I see now that RtpPacketReceived::recovered() exis
bool FlexfecReceiver::AddReceivedPacket(const RtpPacketReceived& packet) {
RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_);

Powered by Google App Engine
This is Rietveld 408576698