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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 VoiceSenderInfo() | 625 VoiceSenderInfo() |
626 : ext_seqnum(0), | 626 : ext_seqnum(0), |
627 jitter_ms(0), | 627 jitter_ms(0), |
628 audio_level(0), | 628 audio_level(0), |
629 aec_quality_min(0.0), | 629 aec_quality_min(0.0), |
630 echo_delay_median_ms(0), | 630 echo_delay_median_ms(0), |
631 echo_delay_std_ms(0), | 631 echo_delay_std_ms(0), |
632 echo_return_loss(0), | 632 echo_return_loss(0), |
633 echo_return_loss_enhancement(0), | 633 echo_return_loss_enhancement(0), |
634 residual_echo_likelihood(0.0f), | 634 residual_echo_likelihood(0.0f), |
635 typing_noise_detected(false) { | 635 residual_echo_likelihood_recent_max(0.0f), |
636 } | 636 typing_noise_detected(false) {} |
637 | 637 |
638 int ext_seqnum; | 638 int ext_seqnum; |
639 int jitter_ms; | 639 int jitter_ms; |
640 int audio_level; | 640 int audio_level; |
641 float aec_quality_min; | 641 float aec_quality_min; |
642 int echo_delay_median_ms; | 642 int echo_delay_median_ms; |
643 int echo_delay_std_ms; | 643 int echo_delay_std_ms; |
644 int echo_return_loss; | 644 int echo_return_loss; |
645 int echo_return_loss_enhancement; | 645 int echo_return_loss_enhancement; |
646 float residual_echo_likelihood; | 646 float residual_echo_likelihood; |
| 647 float residual_echo_likelihood_recent_max; |
647 bool typing_noise_detected; | 648 bool typing_noise_detected; |
648 }; | 649 }; |
649 | 650 |
650 struct VoiceReceiverInfo : public MediaReceiverInfo { | 651 struct VoiceReceiverInfo : public MediaReceiverInfo { |
651 VoiceReceiverInfo() | 652 VoiceReceiverInfo() |
652 : ext_seqnum(0), | 653 : ext_seqnum(0), |
653 jitter_ms(0), | 654 jitter_ms(0), |
654 jitter_buffer_ms(0), | 655 jitter_buffer_ms(0), |
655 jitter_buffer_preferred_ms(0), | 656 jitter_buffer_preferred_ms(0), |
656 delay_estimate_ms(0), | 657 delay_estimate_ms(0), |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1195 const char*, | 1196 const char*, |
1196 size_t> SignalDataReceived; | 1197 size_t> SignalDataReceived; |
1197 // Signal when the media channel is ready to send the stream. Arguments are: | 1198 // Signal when the media channel is ready to send the stream. Arguments are: |
1198 // writable(bool) | 1199 // writable(bool) |
1199 sigslot::signal1<bool> SignalReadyToSend; | 1200 sigslot::signal1<bool> SignalReadyToSend; |
1200 }; | 1201 }; |
1201 | 1202 |
1202 } // namespace cricket | 1203 } // namespace cricket |
1203 | 1204 |
1204 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ | 1205 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ |
OLD | NEW |