| Index: webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h
|
| index 8dbc8af687e7077f9563d0dae3c127ea77fe2946..e24570c1cd9176fa6fc49349724bd3145f17d7e3 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h
|
| @@ -23,7 +23,7 @@ namespace webrtc {
|
|
|
| class UlpfecReceiverImpl : public UlpfecReceiver {
|
| public:
|
| - explicit UlpfecReceiverImpl(RtpData* callback);
|
| + explicit UlpfecReceiverImpl(RecoveredPacketReceiver* callback);
|
| virtual ~UlpfecReceiverImpl();
|
|
|
| int32_t AddReceivedRedPacket(const RTPHeader& rtp_header,
|
| @@ -37,7 +37,7 @@ class UlpfecReceiverImpl : public UlpfecReceiver {
|
|
|
| private:
|
| rtc::CriticalSection crit_sect_;
|
| - RtpData* recovered_packet_callback_;
|
| + RecoveredPacketReceiver* recovered_packet_callback_;
|
| std::unique_ptr<ForwardErrorCorrection> fec_;
|
| // TODO(holmer): In the current version |received_packets_| is never more
|
| // than one packet, since we process FEC every time a new packet
|
|
|