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

Unified Diff: webrtc/call/flexfec_receive_stream_impl.h

Issue 2886993005: Introduce RtpStreamReceiver and RtpStreamReceiverControllerInterface. (Closed)
Patch Set: Reenable FlexfecReceiveStreamTest. Created 3 years, 7 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/call/flexfec_receive_stream_impl.h
diff --git a/webrtc/call/flexfec_receive_stream_impl.h b/webrtc/call/flexfec_receive_stream_impl.h
index e4c22942e62f3ce203fcc77b3813622bbc278229..06d59675a1fe1395da90db839f09351e56118829 100644
--- a/webrtc/call/flexfec_receive_stream_impl.h
+++ b/webrtc/call/flexfec_receive_stream_impl.h
@@ -26,11 +26,14 @@ class RecoveredPacketReceiver;
class RtcpRttStats;
class RtpPacketReceived;
class RtpRtcp;
+class RtpTransportControllerReceiveInterface;
+class RtpTransportReceiver;
class FlexfecReceiveStreamImpl : public FlexfecReceiveStream,
public RtpPacketSinkInterface {
public:
- FlexfecReceiveStreamImpl(const Config& config,
+ FlexfecReceiveStreamImpl(RtpTransportControllerReceiveInterface* transport,
+ const Config& config,
RecoveredPacketReceiver* recovered_packet_receiver,
RtcpRttStats* rtt_stats,
ProcessThread* process_thread);
@@ -59,6 +62,8 @@ class FlexfecReceiveStreamImpl : public FlexfecReceiveStream,
const std::unique_ptr<ReceiveStatistics> rtp_receive_statistics_;
const std::unique_ptr<RtpRtcp> rtp_rtcp_;
ProcessThread* process_thread_;
+
+ std::unique_ptr<RtpTransportReceiver> rtp_transport_receiver_;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698