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

Unified Diff: webrtc/stream.h

Issue 1333483002: Wire up PacketTime to ReceiveStreams. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « webrtc/call.h ('k') | webrtc/test/fake_network_pipe.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/stream.h
diff --git a/webrtc/stream.h b/webrtc/stream.h
index fd30571726114a0226e85eba14317922109073c9..5afab0f200cfcd27c188c786be01dd4a1b6d2067 100644
--- a/webrtc/stream.h
+++ b/webrtc/stream.h
@@ -42,7 +42,9 @@ class Stream {
class ReceiveStream : public Stream {
public:
// Called when a RTP packet is received.
- virtual bool DeliverRtp(const uint8_t* packet, size_t length) = 0;
+ virtual bool DeliverRtp(const uint8_t* packet,
+ size_t length,
+ const PacketTime& packet_time) = 0;
};
// Common base class for send streams.
« no previous file with comments | « webrtc/call.h ('k') | webrtc/test/fake_network_pipe.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698