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

Unified Diff: remoting/protocol/rtp_reader.h

Issue 4925001: Packetizer/Depacketizer for RTP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 10 years, 1 month 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 | « no previous file | remoting/protocol/rtp_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/rtp_reader.h
diff --git a/remoting/protocol/rtp_reader.h b/remoting/protocol/rtp_reader.h
index e7b42def6fea1c2c10b5d2399c0a2fd495105718..1501a3b1d681951bb3566e87f4fa367e7b14477b 100644
--- a/remoting/protocol/rtp_reader.h
+++ b/remoting/protocol/rtp_reader.h
@@ -20,12 +20,17 @@ class RtpPacket {
const RtpHeader& header() const { return header_; }
RtpHeader* mutable_header() { return &header_; }
+
+ const Vp8Descriptor& vp8_descriptor() const { return vp8_descriptor_; }
+ Vp8Descriptor* mutable_vp8_descriptor() { return &vp8_descriptor_; }
+
const CompoundBuffer& payload() const { return payload_; }
CompoundBuffer* mutable_payload() { return &payload_; }
private:
RtpHeader header_;
CompoundBuffer payload_;
+ Vp8Descriptor vp8_descriptor_;
};
class RtpReader : public SocketReaderBase {
@@ -35,7 +40,7 @@ class RtpReader : public SocketReaderBase {
// The OnMessageCallback is called whenever a new message is received.
// Ownership of the message is passed the callback.
- typedef Callback1<const RtpPacket&>::Type OnMessageCallback;
+ typedef Callback1<const RtpPacket*>::Type OnMessageCallback;
// Initialize the reader and start reading. Must be called on the thread
// |socket| belongs to. The callback will be called when a new message is
« no previous file with comments | « no previous file | remoting/protocol/rtp_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698