Index: webrtc/modules/audio_coding/neteq/packet_buffer.h |
diff --git a/webrtc/modules/audio_coding/neteq/packet_buffer.h b/webrtc/modules/audio_coding/neteq/packet_buffer.h |
index ee8c3789db1e9b04f43dab987071dfd6a4857a0d..3abda1d451f230fd6f4eb278ca5681f2c2ddc8b2 100644 |
--- a/webrtc/modules/audio_coding/neteq/packet_buffer.h |
+++ b/webrtc/modules/audio_coding/neteq/packet_buffer.h |
@@ -80,9 +80,9 @@ class PacketBuffer { |
virtual int NextHigherTimestamp(uint32_t timestamp, |
uint32_t* next_timestamp) const; |
- // Returns a (constant) pointer the RTP header of the first packet in the |
- // buffer. Returns NULL if the buffer is empty. |
- virtual const RTPHeader* NextRtpHeader() const; |
+ // Returns a (constant) pointer to the first packet in the buffer. Returns |
+ // NULL if the buffer is empty. |
+ virtual const Packet* PeekNextPacket() const; |
// Extracts the first packet in the buffer and returns a pointer to it. |
// Returns NULL if the buffer is empty. The caller is responsible for deleting |