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

Unified Diff: remoting/protocol/rtp_reader.cc

Issue 4229003: Add VideoReader and VideoWriter interfaces. (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 | « remoting/protocol/rtp_reader.h ('k') | remoting/protocol/rtp_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/rtp_reader.cc
diff --git a/remoting/protocol/rtp_reader.cc b/remoting/protocol/rtp_reader.cc
index a3659fb5fe1c287a7e63373461a88927a5e4724d..31b133e752420d0e42e8f8c61461d960fce1abb9 100644
--- a/remoting/protocol/rtp_reader.cc
+++ b/remoting/protocol/rtp_reader.cc
@@ -34,7 +34,7 @@ void RtpReader::OnDataReceived(net::IOBuffer* buffer, int data_size) {
packet.payload = buffer->data() + header_size;
packet.payload_size = data_size - header_size;
- on_message_callback_->Run(&packet);
+ on_message_callback_->Run(packet);
}
} // namespace remoting
« no previous file with comments | « remoting/protocol/rtp_reader.h ('k') | remoting/protocol/rtp_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698