Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: webrtc/media/base/mediachannel.h

Issue 2431443003: Add a placeholder stat for logging the estimated residual echo likelihood. (Closed)
Patch Set: Fredrik's comments. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/audio/audio_send_stream_unittest.cc ('k') | webrtc/media/engine/webrtcvoiceengine.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 struct VoiceSenderInfo : public MediaSenderInfo { 580 struct VoiceSenderInfo : public MediaSenderInfo {
581 VoiceSenderInfo() 581 VoiceSenderInfo()
582 : ext_seqnum(0), 582 : ext_seqnum(0),
583 jitter_ms(0), 583 jitter_ms(0),
584 audio_level(0), 584 audio_level(0),
585 aec_quality_min(0.0), 585 aec_quality_min(0.0),
586 echo_delay_median_ms(0), 586 echo_delay_median_ms(0),
587 echo_delay_std_ms(0), 587 echo_delay_std_ms(0),
588 echo_return_loss(0), 588 echo_return_loss(0),
589 echo_return_loss_enhancement(0), 589 echo_return_loss_enhancement(0),
590 residual_echo_likelihood(0.0f),
590 typing_noise_detected(false) { 591 typing_noise_detected(false) {
591 } 592 }
592 593
593 int ext_seqnum; 594 int ext_seqnum;
594 int jitter_ms; 595 int jitter_ms;
595 int audio_level; 596 int audio_level;
596 float aec_quality_min; 597 float aec_quality_min;
597 int echo_delay_median_ms; 598 int echo_delay_median_ms;
598 int echo_delay_std_ms; 599 int echo_delay_std_ms;
599 int echo_return_loss; 600 int echo_return_loss;
600 int echo_return_loss_enhancement; 601 int echo_return_loss_enhancement;
602 float residual_echo_likelihood;
601 bool typing_noise_detected; 603 bool typing_noise_detected;
602 }; 604 };
603 605
604 struct VoiceReceiverInfo : public MediaReceiverInfo { 606 struct VoiceReceiverInfo : public MediaReceiverInfo {
605 VoiceReceiverInfo() 607 VoiceReceiverInfo()
606 : ext_seqnum(0), 608 : ext_seqnum(0),
607 jitter_ms(0), 609 jitter_ms(0),
608 jitter_buffer_ms(0), 610 jitter_buffer_ms(0),
609 jitter_buffer_preferred_ms(0), 611 jitter_buffer_preferred_ms(0),
610 delay_estimate_ms(0), 612 delay_estimate_ms(0),
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 // Signal when the media channel is ready to send the stream. Arguments are: 1134 // Signal when the media channel is ready to send the stream. Arguments are:
1133 // writable(bool) 1135 // writable(bool)
1134 sigslot::signal1<bool> SignalReadyToSend; 1136 sigslot::signal1<bool> SignalReadyToSend;
1135 // Signal for notifying that the remote side has closed the DataChannel. 1137 // Signal for notifying that the remote side has closed the DataChannel.
1136 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; 1138 sigslot::signal1<uint32_t> SignalStreamClosedRemotely;
1137 }; 1139 };
1138 1140
1139 } // namespace cricket 1141 } // namespace cricket
1140 1142
1141 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ 1143 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_
OLDNEW
« no previous file with comments | « webrtc/audio/audio_send_stream_unittest.cc ('k') | webrtc/media/engine/webrtcvoiceengine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698