Chromium Code Reviews

Unified Diff: remoting/protocol/rtp_writer.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/rtp_video_writer.cc ('k') | remoting/protocol/rtp_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/rtp_writer.h
diff --git a/remoting/protocol/rtp_writer.h b/remoting/protocol/rtp_writer.h
index 86e92c0fb5e74ffc862a50a954c5a3df1344dfe3..1f410e501bfe249ae1058725a285a679e7e5a67a 100644
--- a/remoting/protocol/rtp_writer.h
+++ b/remoting/protocol/rtp_writer.h
@@ -9,6 +9,9 @@
#include "remoting/protocol/buffered_socket_writer.h"
namespace remoting {
+
+class CompoundBuffer;
+
namespace protocol {
class RtpWriter {
@@ -21,7 +24,7 @@ class RtpWriter {
void Init(net::Socket* rtp_socket, net::Socket* rtcp_socket);
// Sends next packet.
- void SendPacket(const char* payload, int payload_size, uint32 timestamp);
+ void SendPacket(const CompoundBuffer& payload, uint32 timestamp);
// Returns number of packets queued in the buffer.
int GetPendingPackets();
« no previous file with comments | « remoting/protocol/rtp_video_writer.cc ('k') | remoting/protocol/rtp_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine