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

Side by Side Diff: webrtc/api/call/audio_send_stream.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 | « no previous file | webrtc/api/mediastreaminterface.h » ('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) 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 28 matching lines...) Expand all
39 std::string codec_name; 39 std::string codec_name;
40 int32_t ext_seqnum = -1; 40 int32_t ext_seqnum = -1;
41 int32_t jitter_ms = -1; 41 int32_t jitter_ms = -1;
42 int64_t rtt_ms = -1; 42 int64_t rtt_ms = -1;
43 int32_t audio_level = -1; 43 int32_t audio_level = -1;
44 float aec_quality_min = -1.0f; 44 float aec_quality_min = -1.0f;
45 int32_t echo_delay_median_ms = -1; 45 int32_t echo_delay_median_ms = -1;
46 int32_t echo_delay_std_ms = -1; 46 int32_t echo_delay_std_ms = -1;
47 int32_t echo_return_loss = -100; 47 int32_t echo_return_loss = -100;
48 int32_t echo_return_loss_enhancement = -100; 48 int32_t echo_return_loss_enhancement = -100;
49 float residual_echo_likelihood = -1.0f;
49 bool typing_noise_detected = false; 50 bool typing_noise_detected = false;
50 }; 51 };
51 52
52 struct Config { 53 struct Config {
53 Config() = delete; 54 Config() = delete;
54 explicit Config(Transport* send_transport) 55 explicit Config(Transport* send_transport)
55 : send_transport(send_transport) {} 56 : send_transport(send_transport) {}
56 57
57 std::string ToString() const; 58 std::string ToString() const;
58 59
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 virtual void SetMuted(bool muted) = 0; 111 virtual void SetMuted(bool muted) = 0;
111 112
112 virtual Stats GetStats() const = 0; 113 virtual Stats GetStats() const = 0;
113 114
114 protected: 115 protected:
115 virtual ~AudioSendStream() {} 116 virtual ~AudioSendStream() {}
116 }; 117 };
117 } // namespace webrtc 118 } // namespace webrtc
118 119
119 #endif // WEBRTC_API_CALL_AUDIO_SEND_STREAM_H_ 120 #endif // WEBRTC_API_CALL_AUDIO_SEND_STREAM_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/mediastreaminterface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698