OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
591 } | 591 } |
592 | 592 |
593 int ext_seqnum; | 593 int ext_seqnum; |
594 int jitter_ms; | 594 int jitter_ms; |
595 int audio_level; | 595 int audio_level; |
596 float aec_quality_min; | 596 float aec_quality_min; |
597 int echo_delay_median_ms; | 597 int echo_delay_median_ms; |
598 int echo_delay_std_ms; | 598 int echo_delay_std_ms; |
599 int echo_return_loss; | 599 int echo_return_loss; |
600 int echo_return_loss_enhancement; | 600 int echo_return_loss_enhancement; |
601 float residual_echo_likelihood = 0.0f; | |
the sun
2016/10/19 18:27:06
Don't mix styles of intialization
ivoc
2016/10/20 14:28:12
Done.
| |
601 bool typing_noise_detected; | 602 bool typing_noise_detected; |
602 }; | 603 }; |
603 | 604 |
604 struct VoiceReceiverInfo : public MediaReceiverInfo { | 605 struct VoiceReceiverInfo : public MediaReceiverInfo { |
605 VoiceReceiverInfo() | 606 VoiceReceiverInfo() |
606 : ext_seqnum(0), | 607 : ext_seqnum(0), |
607 jitter_ms(0), | 608 jitter_ms(0), |
608 jitter_buffer_ms(0), | 609 jitter_buffer_ms(0), |
609 jitter_buffer_preferred_ms(0), | 610 jitter_buffer_preferred_ms(0), |
610 delay_estimate_ms(0), | 611 delay_estimate_ms(0), |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1132 // Signal when the media channel is ready to send the stream. Arguments are: | 1133 // Signal when the media channel is ready to send the stream. Arguments are: |
1133 // writable(bool) | 1134 // writable(bool) |
1134 sigslot::signal1<bool> SignalReadyToSend; | 1135 sigslot::signal1<bool> SignalReadyToSend; |
1135 // Signal for notifying that the remote side has closed the DataChannel. | 1136 // Signal for notifying that the remote side has closed the DataChannel. |
1136 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; | 1137 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; |
1137 }; | 1138 }; |
1138 | 1139 |
1139 } // namespace cricket | 1140 } // namespace cricket |
1140 | 1141 |
1141 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ | 1142 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ |
OLD | NEW |