OLD | NEW |
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 kStatsValueNamePlisSent, | 200 kStatsValueNamePlisSent, |
201 kStatsValueNamePreemptiveExpandRate, | 201 kStatsValueNamePreemptiveExpandRate, |
202 kStatsValueNamePreferredJitterBufferMs, | 202 kStatsValueNamePreferredJitterBufferMs, |
203 kStatsValueNameRemoteAddress, | 203 kStatsValueNameRemoteAddress, |
204 kStatsValueNameRemoteCandidateId, | 204 kStatsValueNameRemoteCandidateId, |
205 kStatsValueNameRemoteCandidateType, | 205 kStatsValueNameRemoteCandidateType, |
206 kStatsValueNameRemoteCertificateId, | 206 kStatsValueNameRemoteCertificateId, |
207 kStatsValueNameRenderDelayMs, | 207 kStatsValueNameRenderDelayMs, |
208 kStatsValueNameResidualEchoLikelihood, | 208 kStatsValueNameResidualEchoLikelihood, |
209 kStatsValueNameResidualEchoLikelihoodRecentMax, | 209 kStatsValueNameResidualEchoLikelihoodRecentMax, |
| 210 kStatsValueNameAnaBitrateActionCounter, |
| 211 kStatsValueNameAnaChannelActionCounter, |
| 212 kStatsValueNameAnaDtxActionCounter, |
| 213 kStatsValueNameAnaFecActionCounter, |
| 214 kStatsValueNameAnaFrameLengthActionCounter, |
210 kStatsValueNameRetransmitBitrate, | 215 kStatsValueNameRetransmitBitrate, |
211 kStatsValueNameRtt, | 216 kStatsValueNameRtt, |
212 kStatsValueNameSecondaryDecodedRate, | 217 kStatsValueNameSecondaryDecodedRate, |
213 kStatsValueNameSecondaryDiscardedRate, | 218 kStatsValueNameSecondaryDiscardedRate, |
214 kStatsValueNameSendPacketsDiscarded, | 219 kStatsValueNameSendPacketsDiscarded, |
215 kStatsValueNameSpeechExpandRate, | 220 kStatsValueNameSpeechExpandRate, |
216 kStatsValueNameSrtpCipher, | 221 kStatsValueNameSrtpCipher, |
217 kStatsValueNameTargetDelayMs, | 222 kStatsValueNameTargetDelayMs, |
218 kStatsValueNameTargetEncBitrate, | 223 kStatsValueNameTargetEncBitrate, |
219 kStatsValueNameTimingFrameInfo, // Result of |TimingFrameInfo::ToString| | 224 kStatsValueNameTimingFrameInfo, // Result of |TimingFrameInfo::ToString| |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 StatsReport* Find(const StatsReport::Id& id); | 432 StatsReport* Find(const StatsReport::Id& id); |
428 | 433 |
429 private: | 434 private: |
430 Container list_; | 435 Container list_; |
431 rtc::ThreadChecker thread_checker_; | 436 rtc::ThreadChecker thread_checker_; |
432 }; | 437 }; |
433 | 438 |
434 } // namespace webrtc | 439 } // namespace webrtc |
435 | 440 |
436 #endif // WEBRTC_API_STATSTYPES_H_ | 441 #endif // WEBRTC_API_STATSTYPES_H_ |
OLD | NEW |