Chromium Code Reviews

Unified Diff: remoting/protocol/rtp_reader.h

Issue 4779001: Added CompoundBuffer that will be used to store data in the encoding/decoding (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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « remoting/protocol/message_reader.cc ('k') | 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 c159f8d0ae1cfc15927c1b26712648fb822aa86c..e7b42def6fea1c2c10b5d2399c0a2fd495105718 100644
--- a/remoting/protocol/rtp_reader.h
+++ b/remoting/protocol/rtp_reader.h
@@ -6,20 +6,26 @@
#define REMOTING_PROTOCOL_RTP_READER_H_
#include "base/scoped_ptr.h"
+#include "remoting/base/compound_buffer.h"
#include "remoting/protocol/rtp_utils.h"
#include "remoting/protocol/socket_reader_base.h"
namespace remoting {
namespace protocol {
-struct RtpPacket {
+class RtpPacket {
+ public:
RtpPacket();
~RtpPacket();
- RtpHeader header;
- scoped_refptr<net::IOBuffer> data;
- char* payload;
- int payload_size;
+ const RtpHeader& header() const { return header_; }
+ RtpHeader* mutable_header() { return &header_; }
+ const CompoundBuffer& payload() const { return payload_; }
+ CompoundBuffer* mutable_payload() { return &payload_; }
+
+ private:
+ RtpHeader header_;
+ CompoundBuffer payload_;
};
class RtpReader : public SocketReaderBase {
« no previous file with comments | « remoting/protocol/message_reader.cc ('k') | remoting/protocol/rtp_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine