| 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 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 CastTransportAudioConfig::CastTransportAudioConfig() | 27 CastTransportAudioConfig::CastTransportAudioConfig() |
| 28 : codec(kOpus), frequency(0), channels(0) {} | 28 : codec(kOpus), frequency(0), channels(0) {} |
| 29 | 29 |
| 30 CastTransportAudioConfig::~CastTransportAudioConfig() {} | 30 CastTransportAudioConfig::~CastTransportAudioConfig() {} |
| 31 | 31 |
| 32 CastTransportVideoConfig::CastTransportVideoConfig() : codec(kVp8) {} | 32 CastTransportVideoConfig::CastTransportVideoConfig() : codec(kVp8) {} |
| 33 | 33 |
| 34 CastTransportVideoConfig::~CastTransportVideoConfig() {} | 34 CastTransportVideoConfig::~CastTransportVideoConfig() {} |
| 35 | 35 |
| 36 EncodedVideoFrame::EncodedVideoFrame() | 36 EncodedFrame::EncodedFrame() |
| 37 : codec(kVp8), | 37 : relationship(UNKNOWN_RELATIONSHIP), |
| 38 key_frame(false), | |
| 39 frame_id(0), | 38 frame_id(0), |
| 40 last_referenced_frame_id(0), | 39 referenced_frame_id(0), |
| 41 rtp_timestamp(0) {} | 40 rtp_timestamp(0) {} |
| 42 EncodedVideoFrame::~EncodedVideoFrame() {} | |
| 43 | 41 |
| 44 EncodedAudioFrame::EncodedAudioFrame() | 42 EncodedFrame::~EncodedFrame() {} |
| 45 : codec(kOpus), frame_id(0), rtp_timestamp(0) {} | |
| 46 EncodedAudioFrame::~EncodedAudioFrame() {} | |
| 47 | 43 |
| 48 RtcpSenderInfo::RtcpSenderInfo() | 44 RtcpSenderInfo::RtcpSenderInfo() |
| 49 : ntp_seconds(0), | 45 : ntp_seconds(0), |
| 50 ntp_fraction(0), | 46 ntp_fraction(0), |
| 51 rtp_timestamp(0), | 47 rtp_timestamp(0), |
| 52 send_packet_count(0), | 48 send_packet_count(0), |
| 53 send_octet_count(0) {} | 49 send_octet_count(0) {} |
| 54 RtcpSenderInfo::~RtcpSenderInfo() {} | 50 RtcpSenderInfo::~RtcpSenderInfo() {} |
| 55 | 51 |
| 56 RtcpReportBlock::RtcpReportBlock() | 52 RtcpReportBlock::RtcpReportBlock() |
| (...skipping 11 matching lines...) Expand all Loading... |
| 68 : last_rr(0), delay_since_last_rr(0) {} | 64 : last_rr(0), delay_since_last_rr(0) {} |
| 69 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} | 65 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} |
| 70 | 66 |
| 71 SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData() | 67 SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData() |
| 72 : packet_type_flags(0), sending_ssrc(0) {} | 68 : packet_type_flags(0), sending_ssrc(0) {} |
| 73 SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {} | 69 SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {} |
| 74 | 70 |
| 75 } // namespace transport | 71 } // namespace transport |
| 76 } // namespace cast | 72 } // namespace cast |
| 77 } // namespace media | 73 } // namespace media |
| OLD | NEW |