| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/cast/transport/cast_transport_config.h" | 5 #include "media/cast/transport/cast_transport_config.h" |
| 6 | 6 |
| 7 namespace media { | 7 namespace media { |
| 8 namespace cast { | 8 namespace cast { |
| 9 namespace transport { | 9 namespace transport { |
| 10 | 10 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 jitter(0), | 58 jitter(0), |
| 59 last_sr(0), | 59 last_sr(0), |
| 60 delay_since_last_sr(0) {} | 60 delay_since_last_sr(0) {} |
| 61 RtcpReportBlock::~RtcpReportBlock() {} | 61 RtcpReportBlock::~RtcpReportBlock() {} |
| 62 | 62 |
| 63 RtcpDlrrReportBlock::RtcpDlrrReportBlock() | 63 RtcpDlrrReportBlock::RtcpDlrrReportBlock() |
| 64 : last_rr(0), | 64 : last_rr(0), |
| 65 delay_since_last_rr(0) {} | 65 delay_since_last_rr(0) {} |
| 66 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} | 66 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} |
| 67 | 67 |
| 68 SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData() |
| 69 : packet_type_flags(0), |
| 70 sending_ssrc(0) {} |
| 71 SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {} |
| 72 |
| 68 } // namespace transport | 73 } // namespace transport |
| 69 } // namespace cast | 74 } // namespace cast |
| 70 } // namespace media | 75 } // namespace media |
| OLD | NEW |