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 12 matching lines...) Expand all Loading... |
23 ss << ", channels: " << codec_inst.channels; | 23 ss << ", channels: " << codec_inst.channels; |
24 ss << ", rate: " << codec_inst.rate; | 24 ss << ", rate: " << codec_inst.rate; |
25 ss << '}'; | 25 ss << '}'; |
26 return ss.str(); | 26 return ss.str(); |
27 } | 27 } |
28 } // namespace | 28 } // namespace |
29 | 29 |
30 namespace webrtc { | 30 namespace webrtc { |
31 | 31 |
32 AudioSendStream::Stats::Stats() = default; | 32 AudioSendStream::Stats::Stats() = default; |
| 33 AudioSendStream::Stats::~Stats() = default; |
33 | 34 |
34 AudioSendStream::Config::Config(Transport* send_transport) | 35 AudioSendStream::Config::Config(Transport* send_transport) |
35 : send_transport(send_transport) {} | 36 : send_transport(send_transport) {} |
36 | 37 |
37 AudioSendStream::Config::~Config() = default; | 38 AudioSendStream::Config::~Config() = default; |
38 | 39 |
39 std::string AudioSendStream::Config::ToString() const { | 40 std::string AudioSendStream::Config::ToString() const { |
40 std::stringstream ss; | 41 std::stringstream ss; |
41 ss << "{rtp: " << rtp.ToString(); | 42 ss << "{rtp: " << rtp.ToString(); |
42 ss << ", send_transport: " << (send_transport ? "(Transport)" : "nullptr"); | 43 ss << ", send_transport: " << (send_transport ? "(Transport)" : "nullptr"); |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 enable_opus_dtx == rhs.enable_opus_dtx && | 100 enable_opus_dtx == rhs.enable_opus_dtx && |
100 opus_max_playback_rate == rhs.opus_max_playback_rate && | 101 opus_max_playback_rate == rhs.opus_max_playback_rate && |
101 cng_payload_type == rhs.cng_payload_type && | 102 cng_payload_type == rhs.cng_payload_type && |
102 cng_plfreq == rhs.cng_plfreq && max_ptime_ms == rhs.max_ptime_ms && | 103 cng_plfreq == rhs.cng_plfreq && max_ptime_ms == rhs.max_ptime_ms && |
103 min_ptime_ms == rhs.min_ptime_ms && codec_inst == rhs.codec_inst) { | 104 min_ptime_ms == rhs.min_ptime_ms && codec_inst == rhs.codec_inst) { |
104 return true; | 105 return true; |
105 } | 106 } |
106 return false; | 107 return false; |
107 } | 108 } |
108 } // namespace webrtc | 109 } // namespace webrtc |
OLD | NEW |