| 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/net/cast_transport_config.h" | 5 #include "media/cast/net/cast_transport_config.h" |
| 6 | 6 |
| 7 namespace media { | 7 namespace media { |
| 8 namespace cast { | 8 namespace cast { |
| 9 | 9 |
| 10 CastTransportRtpConfig::CastTransportRtpConfig() | 10 CastTransportRtpConfig::CastTransportRtpConfig() |
| 11 : ssrc(0), feedback_ssrc(0), rtp_payload_type(0) {} | 11 : ssrc(0), feedback_ssrc(0), rtp_payload_type(RtpPayloadType::UNKNOWN) {} |
| 12 | 12 |
| 13 CastTransportRtpConfig::~CastTransportRtpConfig() {} | 13 CastTransportRtpConfig::~CastTransportRtpConfig() {} |
| 14 | 14 |
| 15 EncodedFrame::EncodedFrame() | 15 EncodedFrame::EncodedFrame() |
| 16 : dependency(UNKNOWN_DEPENDENCY), | 16 : dependency(UNKNOWN_DEPENDENCY), |
| 17 new_playout_delay_ms(0) {} | 17 new_playout_delay_ms(0) {} |
| 18 | 18 |
| 19 EncodedFrame::~EncodedFrame() {} | 19 EncodedFrame::~EncodedFrame() {} |
| 20 | 20 |
| 21 void EncodedFrame::CopyMetadataTo(EncodedFrame* dest) const { | 21 void EncodedFrame::CopyMetadataTo(EncodedFrame* dest) const { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 45 last_sr(0), | 45 last_sr(0), |
| 46 delay_since_last_sr(0) {} | 46 delay_since_last_sr(0) {} |
| 47 RtcpReportBlock::~RtcpReportBlock() {} | 47 RtcpReportBlock::~RtcpReportBlock() {} |
| 48 | 48 |
| 49 RtcpDlrrReportBlock::RtcpDlrrReportBlock() | 49 RtcpDlrrReportBlock::RtcpDlrrReportBlock() |
| 50 : last_rr(0), delay_since_last_rr(0) {} | 50 : last_rr(0), delay_since_last_rr(0) {} |
| 51 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} | 51 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} |
| 52 | 52 |
| 53 } // namespace cast | 53 } // namespace cast |
| 54 } // namespace media | 54 } // namespace media |
| OLD | NEW |