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

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

Issue 3011623002: Add new ANA stats to GetStats() to count the number of actions taken by each controller. (Closed)
Patch Set: Addressed review comments. Created 3 years, 3 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
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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 double total_input_energy; 634 double total_input_energy;
635 double total_input_duration; 635 double total_input_duration;
636 float aec_quality_min; 636 float aec_quality_min;
637 int echo_delay_median_ms; 637 int echo_delay_median_ms;
638 int echo_delay_std_ms; 638 int echo_delay_std_ms;
639 int echo_return_loss; 639 int echo_return_loss;
640 int echo_return_loss_enhancement; 640 int echo_return_loss_enhancement;
641 float residual_echo_likelihood; 641 float residual_echo_likelihood;
642 float residual_echo_likelihood_recent_max; 642 float residual_echo_likelihood_recent_max;
643 bool typing_noise_detected; 643 bool typing_noise_detected;
644 rtc::Optional<int> ana_bitrate_action_counter;
645 rtc::Optional<int> ana_channel_action_counter;
646 rtc::Optional<int> ana_dtx_action_counter;
647 rtc::Optional<int> ana_fec_action_counter;
648 rtc::Optional<int> ana_frame_length_action_counter;
hbos 2017/09/04 08:49:54 Should there be one field that is ANAStats instead
ivoc 2017/09/04 15:48:01 Sounds like a good idea, done.
644 }; 649 };
645 650
646 struct VoiceReceiverInfo : public MediaReceiverInfo { 651 struct VoiceReceiverInfo : public MediaReceiverInfo {
647 VoiceReceiverInfo() 652 VoiceReceiverInfo()
648 : ext_seqnum(0), 653 : ext_seqnum(0),
649 jitter_ms(0), 654 jitter_ms(0),
650 jitter_buffer_ms(0), 655 jitter_buffer_ms(0),
651 jitter_buffer_preferred_ms(0), 656 jitter_buffer_preferred_ms(0),
652 delay_estimate_ms(0), 657 delay_estimate_ms(0),
653 audio_level(0), 658 audio_level(0),
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 const char*, 1246 const char*,
1242 size_t> SignalDataReceived; 1247 size_t> SignalDataReceived;
1243 // Signal when the media channel is ready to send the stream. Arguments are: 1248 // Signal when the media channel is ready to send the stream. Arguments are:
1244 // writable(bool) 1249 // writable(bool)
1245 sigslot::signal1<bool> SignalReadyToSend; 1250 sigslot::signal1<bool> SignalReadyToSend;
1246 }; 1251 };
1247 1252
1248 } // namespace cricket 1253 } // namespace cricket
1249 1254
1250 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ 1255 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698