OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 codec_inst = empty_inst; | 75 codec_inst = empty_inst; |
76 codec_inst.pltype = -1; | 76 codec_inst.pltype = -1; |
77 } | 77 } |
78 | 78 |
79 std::string AudioSendStream::Config::SendCodecSpec::ToString() const { | 79 std::string AudioSendStream::Config::SendCodecSpec::ToString() const { |
80 std::stringstream ss; | 80 std::stringstream ss; |
81 ss << "{nack_enabled: " << (nack_enabled ? "true" : "false"); | 81 ss << "{nack_enabled: " << (nack_enabled ? "true" : "false"); |
82 ss << ", transport_cc_enabled: " << (transport_cc_enabled ? "true" : "false"); | 82 ss << ", transport_cc_enabled: " << (transport_cc_enabled ? "true" : "false"); |
83 ss << ", enable_codec_fec: " << (enable_codec_fec ? "true" : "false"); | 83 ss << ", enable_codec_fec: " << (enable_codec_fec ? "true" : "false"); |
84 ss << ", enable_opus_dtx: " << (enable_opus_dtx ? "true" : "false"); | 84 ss << ", enable_opus_dtx: " << (enable_opus_dtx ? "true" : "false"); |
| 85 ss << ", enable_opus_cbr: " << (enable_opus_cbr ? "true" : "false"); |
85 ss << ", opus_max_playback_rate: " << opus_max_playback_rate; | 86 ss << ", opus_max_playback_rate: " << opus_max_playback_rate; |
86 ss << ", cng_payload_type: " << cng_payload_type; | 87 ss << ", cng_payload_type: " << cng_payload_type; |
87 ss << ", cng_plfreq: " << cng_plfreq; | 88 ss << ", cng_plfreq: " << cng_plfreq; |
88 ss << ", min_ptime: " << min_ptime_ms; | 89 ss << ", min_ptime: " << min_ptime_ms; |
89 ss << ", max_ptime: " << max_ptime_ms; | 90 ss << ", max_ptime: " << max_ptime_ms; |
90 ss << ", codec_inst: " << ::ToString(codec_inst); | 91 ss << ", codec_inst: " << ::ToString(codec_inst); |
91 ss << '}'; | 92 ss << '}'; |
92 return ss.str(); | 93 return ss.str(); |
93 } | 94 } |
94 | 95 |
95 bool AudioSendStream::Config::SendCodecSpec::operator==( | 96 bool AudioSendStream::Config::SendCodecSpec::operator==( |
96 const AudioSendStream::Config::SendCodecSpec& rhs) const { | 97 const AudioSendStream::Config::SendCodecSpec& rhs) const { |
97 if (nack_enabled == rhs.nack_enabled && | 98 if (nack_enabled == rhs.nack_enabled && |
98 transport_cc_enabled == rhs.transport_cc_enabled && | 99 transport_cc_enabled == rhs.transport_cc_enabled && |
99 enable_codec_fec == rhs.enable_codec_fec && | 100 enable_codec_fec == rhs.enable_codec_fec && |
100 enable_opus_dtx == rhs.enable_opus_dtx && | 101 enable_opus_dtx == rhs.enable_opus_dtx && |
| 102 enable_opus_cbr == rhs.enable_opus_cbr && |
101 opus_max_playback_rate == rhs.opus_max_playback_rate && | 103 opus_max_playback_rate == rhs.opus_max_playback_rate && |
102 cng_payload_type == rhs.cng_payload_type && | 104 cng_payload_type == rhs.cng_payload_type && |
103 cng_plfreq == rhs.cng_plfreq && max_ptime_ms == rhs.max_ptime_ms && | 105 cng_plfreq == rhs.cng_plfreq && max_ptime_ms == rhs.max_ptime_ms && |
104 min_ptime_ms == rhs.min_ptime_ms && codec_inst == rhs.codec_inst) { | 106 min_ptime_ms == rhs.min_ptime_ms && codec_inst == rhs.codec_inst) { |
105 return true; | 107 return true; |
106 } | 108 } |
107 return false; | 109 return false; |
108 } | 110 } |
109 } // namespace webrtc | 111 } // namespace webrtc |
OLD | NEW |