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

Side by Side Diff: webrtc/api/statstypes.h

Issue 2629563003: Added a new echo likelihood stat that reports the maximum value from a previous time period. (Closed)
Patch Set: Small bugfix. Created 3 years, 11 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 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 kStatsValueNamePlisReceived, 195 kStatsValueNamePlisReceived,
196 kStatsValueNamePlisSent, 196 kStatsValueNamePlisSent,
197 kStatsValueNamePreemptiveExpandRate, 197 kStatsValueNamePreemptiveExpandRate,
198 kStatsValueNamePreferredJitterBufferMs, 198 kStatsValueNamePreferredJitterBufferMs,
199 kStatsValueNameRemoteAddress, 199 kStatsValueNameRemoteAddress,
200 kStatsValueNameRemoteCandidateId, 200 kStatsValueNameRemoteCandidateId,
201 kStatsValueNameRemoteCandidateType, 201 kStatsValueNameRemoteCandidateType,
202 kStatsValueNameRemoteCertificateId, 202 kStatsValueNameRemoteCertificateId,
203 kStatsValueNameRenderDelayMs, 203 kStatsValueNameRenderDelayMs,
204 kStatsValueNameResidualEchoLikelihood, 204 kStatsValueNameResidualEchoLikelihood,
205 kStatsValueNameResidualEchoLikelihoodRecentMax,
205 kStatsValueNameRetransmitBitrate, 206 kStatsValueNameRetransmitBitrate,
206 kStatsValueNameRtt, 207 kStatsValueNameRtt,
207 kStatsValueNameSecondaryDecodedRate, 208 kStatsValueNameSecondaryDecodedRate,
208 kStatsValueNameSendPacketsDiscarded, 209 kStatsValueNameSendPacketsDiscarded,
209 kStatsValueNameSpeechExpandRate, 210 kStatsValueNameSpeechExpandRate,
210 kStatsValueNameSrtpCipher, 211 kStatsValueNameSrtpCipher,
211 kStatsValueNameTargetDelayMs, 212 kStatsValueNameTargetDelayMs,
212 kStatsValueNameTargetEncBitrate, 213 kStatsValueNameTargetEncBitrate,
213 kStatsValueNameTrackId, 214 kStatsValueNameTrackId,
214 kStatsValueNameTransmitBitrate, 215 kStatsValueNameTransmitBitrate,
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 StatsReport* Find(const StatsReport::Id& id); 404 StatsReport* Find(const StatsReport::Id& id);
404 405
405 private: 406 private:
406 Container list_; 407 Container list_;
407 rtc::ThreadChecker thread_checker_; 408 rtc::ThreadChecker thread_checker_;
408 }; 409 };
409 410
410 } // namespace webrtc 411 } // namespace webrtc
411 412
412 #endif // WEBRTC_API_STATSTYPES_H_ 413 #endif // WEBRTC_API_STATSTYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698