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

Unified Diff: remoting/protocol/rtp_utils.h

Issue 5624002: Move more code from headers to implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 10 years 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
Index: remoting/protocol/rtp_utils.h
diff --git a/remoting/protocol/rtp_utils.h b/remoting/protocol/rtp_utils.h
index 599ffaf51121071c2aa456e51bb3b172b2094d96..4441d78eb6b0610564678d6e6029f4f6f25f9eac 100644
--- a/remoting/protocol/rtp_utils.h
+++ b/remoting/protocol/rtp_utils.h
@@ -11,16 +11,7 @@ namespace remoting {
namespace protocol {
struct RtpHeader {
- RtpHeader()
- : padding(false),
- extension(false),
- sources(0),
- marker(false),
- payload_type(0),
- sequence_number(0),
- timestamp(0),
- sync_source_id(0) {
- }
+ RtpHeader();
Sergey Ulanov 2010/12/07 21:15:42 This was inlined intentionally. This file is inclu
Elliot Glaysher 2010/12/07 21:49:25 This was found by an automated process which is go
Sergey Ulanov 2010/12/07 22:00:38 Yes, it doesn't make much difference in performanc
// RTP version is always set to 2.
// version = 2
@@ -36,16 +27,7 @@ struct RtpHeader {
};
struct RtcpReceiverReport {
- RtcpReceiverReport()
- : receiver_ssrc(0),
- sender_ssrc(0),
- loss_fraction(0),
- total_lost_packets(0),
- last_sequence_number(0),
- jitter(0),
- last_sender_report_timestamp(0),
- last_sender_report_delay(0) {
- }
+ RtcpReceiverReport();
Sergey Ulanov 2010/12/07 21:15:42 same here.
uint32 receiver_ssrc;
uint32 sender_ssrc;

Powered by Google App Engine
This is Rietveld 408576698