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 705182906cd060c6737b4f8ee76a338e4d32b7ca..39fcaa76140e9defdb717e8afd3005d60a40e580 100644 |
--- a/webrtc/call/flexfec_receive_stream_impl.h |
+++ b/webrtc/call/flexfec_receive_stream_impl.h |
@@ -15,6 +15,7 @@ |
#include "webrtc/base/criticalsection.h" |
#include "webrtc/call/flexfec_receive_stream.h" |
+#include "webrtc/call/rtp_demuxer.h" |
namespace webrtc { |
@@ -26,7 +27,8 @@ class RtcpRttStats; |
class RtpPacketReceived; |
class RtpRtcp; |
-class FlexfecReceiveStreamImpl : public FlexfecReceiveStream { |
+class FlexfecReceiveStreamImpl : public FlexfecReceiveStream, |
+ public RtpPacketSinkInterface { |
public: |
FlexfecReceiveStreamImpl(const Config& config, |
RecoveredPacketReceiver* recovered_packet_receiver, |
@@ -36,8 +38,8 @@ class FlexfecReceiveStreamImpl : public FlexfecReceiveStream { |
const Config& GetConfig() const { return config_; } |
- // TODO(nisse): Intended to be part of an RtpPacketReceiver interface. |
- void OnRtpPacket(const RtpPacketReceived& packet); |
+ // RtpPacketSinkInterface. |
+ void OnRtpPacket(const RtpPacketReceived& packet) override; |
// Implements FlexfecReceiveStream. |
void Start() override; |