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

Unified Diff: webrtc/modules/audio_coding/neteq/mock/mock_packet_buffer.h

Issue 2411183003: Removed RTPHeader from NetEq's Packet struct. (Closed)
Patch Set: Fixed naming of payloadType and sequenceNumber. Updated comments. Created 4 years, 2 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/modules/audio_coding/neteq/mock/mock_packet_buffer.h
diff --git a/webrtc/modules/audio_coding/neteq/mock/mock_packet_buffer.h b/webrtc/modules/audio_coding/neteq/mock/mock_packet_buffer.h
index fd52c3b943603371fc3fefdca820460eb5a8b4c2..ae1ab7a386af613dd7913cdcfc72d9f038a43d14 100644
--- a/webrtc/modules/audio_coding/neteq/mock/mock_packet_buffer.h
+++ b/webrtc/modules/audio_coding/neteq/mock/mock_packet_buffer.h
@@ -38,8 +38,8 @@ class MockPacketBuffer : public PacketBuffer {
int(uint32_t* next_timestamp));
MOCK_CONST_METHOD2(NextHigherTimestamp,
int(uint32_t timestamp, uint32_t* next_timestamp));
- MOCK_CONST_METHOD0(NextRtpHeader,
- const RTPHeader*());
+ MOCK_CONST_METHOD0(PeekNextPacket,
+ const Packet*());
MOCK_METHOD1(GetNextPacket,
Packet*(size_t* discard_count));
MOCK_METHOD0(DiscardNextPacket,

Powered by Google App Engine
This is Rietveld 408576698