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 : frame_id(0), |
38 key_frame(false), | 38 base_frame_id(0), |
39 frame_id(0), | |
40 last_referenced_frame_id(0), | |
41 rtp_timestamp(0) {} | 39 rtp_timestamp(0) {} |
42 EncodedVideoFrame::~EncodedVideoFrame() {} | |
43 | 40 |
44 EncodedAudioFrame::EncodedAudioFrame() | 41 EncodedFrame::~EncodedFrame() {} |
45 : codec(kOpus), frame_id(0), rtp_timestamp(0) {} | |
46 EncodedAudioFrame::~EncodedAudioFrame() {} | |
47 | 42 |
48 RtcpSenderInfo::RtcpSenderInfo() | 43 RtcpSenderInfo::RtcpSenderInfo() |
49 : ntp_seconds(0), | 44 : ntp_seconds(0), |
50 ntp_fraction(0), | 45 ntp_fraction(0), |
51 rtp_timestamp(0), | 46 rtp_timestamp(0), |
52 send_packet_count(0), | 47 send_packet_count(0), |
53 send_octet_count(0) {} | 48 send_octet_count(0) {} |
54 RtcpSenderInfo::~RtcpSenderInfo() {} | 49 RtcpSenderInfo::~RtcpSenderInfo() {} |
55 | 50 |
56 RtcpReportBlock::RtcpReportBlock() | 51 RtcpReportBlock::RtcpReportBlock() |
(...skipping 11 matching lines...) Expand all Loading... |
68 : last_rr(0), delay_since_last_rr(0) {} | 63 : last_rr(0), delay_since_last_rr(0) {} |
69 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} | 64 RtcpDlrrReportBlock::~RtcpDlrrReportBlock() {} |
70 | 65 |
71 SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData() | 66 SendRtcpFromRtpSenderData::SendRtcpFromRtpSenderData() |
72 : packet_type_flags(0), sending_ssrc(0) {} | 67 : packet_type_flags(0), sending_ssrc(0) {} |
73 SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {} | 68 SendRtcpFromRtpSenderData::~SendRtcpFromRtpSenderData() {} |
74 | 69 |
75 } // namespace transport | 70 } // namespace transport |
76 } // namespace cast | 71 } // namespace cast |
77 } // namespace media | 72 } // namespace media |
OLD | NEW |