Index: webrtc/video/rtp_stream_receiver.h |
diff --git a/webrtc/video/rtp_stream_receiver.h b/webrtc/video/rtp_stream_receiver.h |
index dd217899f2d7914361ae8488115cce69ccf67089..c6531ccb9b5487a9a6a6276847938a99c4ab60f9 100644 |
--- a/webrtc/video/rtp_stream_receiver.h |
+++ b/webrtc/video/rtp_stream_receiver.h |
@@ -44,6 +44,7 @@ class ReceiveStatisticsProxy; |
class RemoteNtpTimeEstimator; |
class RtcpRttStats; |
class RtpHeaderParser; |
+class RtpPacketReceived; |
class RTPPayloadRegistry; |
class RtpReceiver; |
class Transport; |
@@ -89,9 +90,6 @@ class RtpStreamReceiver : public RtpData, |
void StartReceive(); |
void StopReceive(); |
- bool DeliverRtp(const uint8_t* rtp_packet, |
- size_t rtp_packet_length, |
- const PacketTime& packet_time); |
bool DeliverRtcp(const uint8_t* rtcp_packet, size_t rtcp_packet_length); |
void FrameContinuous(uint16_t seq_num); |
@@ -100,6 +98,9 @@ class RtpStreamReceiver : public RtpData, |
void SignalNetworkState(NetworkState state); |
+ // TODO(nisse): Intended to be part of an RtpPacketReceiver interface. |
+ void OnRtpPacket(const RtpPacketReceived& packet); |
+ |
// Implements RtpData. |
int32_t OnReceivedPayloadData(const uint8_t* payload_data, |
size_t payload_size, |