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

Side by Side Diff: webrtc/api/call/audio_receive_stream.h

Issue 2341293002: Add new decoding statistics for muted output (Closed)
Patch Set: Updates after reviews Created 4 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
« no previous file with comments | « no previous file | webrtc/api/statscollector.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) 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 float speech_expand_rate = 0.0f; 50 float speech_expand_rate = 0.0f;
51 float secondary_decoded_rate = 0.0f; 51 float secondary_decoded_rate = 0.0f;
52 float accelerate_rate = 0.0f; 52 float accelerate_rate = 0.0f;
53 float preemptive_expand_rate = 0.0f; 53 float preemptive_expand_rate = 0.0f;
54 int32_t decoding_calls_to_silence_generator = 0; 54 int32_t decoding_calls_to_silence_generator = 0;
55 int32_t decoding_calls_to_neteq = 0; 55 int32_t decoding_calls_to_neteq = 0;
56 int32_t decoding_normal = 0; 56 int32_t decoding_normal = 0;
57 int32_t decoding_plc = 0; 57 int32_t decoding_plc = 0;
58 int32_t decoding_cng = 0; 58 int32_t decoding_cng = 0;
59 int32_t decoding_plc_cng = 0; 59 int32_t decoding_plc_cng = 0;
60 int32_t decoding_muted_output = 0;
60 int64_t capture_start_ntp_time_ms = 0; 61 int64_t capture_start_ntp_time_ms = 0;
61 }; 62 };
62 63
63 struct Config { 64 struct Config {
64 std::string ToString() const; 65 std::string ToString() const;
65 66
66 // Receive-stream specific RTP settings. 67 // Receive-stream specific RTP settings.
67 struct Rtp { 68 struct Rtp {
68 std::string ToString() const; 69 std::string ToString() const;
69 70
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 // Sets playback gain of the stream, applied when mixing, and thus after it 131 // Sets playback gain of the stream, applied when mixing, and thus after it
131 // is potentially forwarded to any attached AudioSinkInterface implementation. 132 // is potentially forwarded to any attached AudioSinkInterface implementation.
132 virtual void SetGain(float gain) = 0; 133 virtual void SetGain(float gain) = 0;
133 134
134 protected: 135 protected:
135 virtual ~AudioReceiveStream() {} 136 virtual ~AudioReceiveStream() {}
136 }; 137 };
137 } // namespace webrtc 138 } // namespace webrtc
138 139
139 #endif // WEBRTC_API_CALL_AUDIO_RECEIVE_STREAM_H_ 140 #endif // WEBRTC_API_CALL_AUDIO_RECEIVE_STREAM_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/statscollector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698