| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/cast_config.h" | 5 #include "media/cast/cast_config.h" |
| 6 | 6 |
| 7 namespace media { | 7 namespace media { |
| 8 namespace cast { | 8 namespace cast { |
| 9 | 9 |
| 10 // TODO(miu): Revisit code factoring of these structs. There are a number of | 10 // TODO(miu): Revisit code factoring of these structs. There are a number of |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 codec(CODEC_AUDIO_OPUS) {} | 58 codec(CODEC_AUDIO_OPUS) {} |
| 59 | 59 |
| 60 AudioSenderConfig::~AudioSenderConfig() {} | 60 AudioSenderConfig::~AudioSenderConfig() {} |
| 61 | 61 |
| 62 FrameReceiverConfig::FrameReceiverConfig() | 62 FrameReceiverConfig::FrameReceiverConfig() |
| 63 : feedback_ssrc(0), | 63 : feedback_ssrc(0), |
| 64 incoming_ssrc(0), | 64 incoming_ssrc(0), |
| 65 rtcp_interval(kDefaultRtcpIntervalMs), | 65 rtcp_interval(kDefaultRtcpIntervalMs), |
| 66 rtp_max_delay_ms(kDefaultRtpMaxDelayMs), | 66 rtp_max_delay_ms(kDefaultRtpMaxDelayMs), |
| 67 rtp_payload_type(0), | 67 rtp_payload_type(0), |
| 68 frequency(0), | 68 rtp_timebase(0), |
| 69 channels(0), | 69 channels(0), |
| 70 target_frame_rate(0), | 70 target_frame_rate(0), |
| 71 codec(CODEC_UNKNOWN) {} | 71 codec(CODEC_UNKNOWN) {} |
| 72 | 72 |
| 73 FrameReceiverConfig::~FrameReceiverConfig() {} | 73 FrameReceiverConfig::~FrameReceiverConfig() {} |
| 74 | 74 |
| 75 } // namespace cast | 75 } // namespace cast |
| 76 } // namespace media | 76 } // namespace media |
| OLD | NEW |