OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2016 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 public: | 322 public: |
323 WEBRTC_RTCSTATS_DECL(); | 323 WEBRTC_RTCSTATS_DECL(); |
324 | 324 |
325 RTCInboundRTPStreamStats(const std::string& id, int64_t timestamp_us); | 325 RTCInboundRTPStreamStats(const std::string& id, int64_t timestamp_us); |
326 RTCInboundRTPStreamStats(std::string&& id, int64_t timestamp_us); | 326 RTCInboundRTPStreamStats(std::string&& id, int64_t timestamp_us); |
327 RTCInboundRTPStreamStats(const RTCInboundRTPStreamStats& other); | 327 RTCInboundRTPStreamStats(const RTCInboundRTPStreamStats& other); |
328 ~RTCInboundRTPStreamStats() override; | 328 ~RTCInboundRTPStreamStats() override; |
329 | 329 |
330 RTCStatsMember<uint32_t> packets_received; | 330 RTCStatsMember<uint32_t> packets_received; |
331 RTCStatsMember<uint64_t> bytes_received; | 331 RTCStatsMember<uint64_t> bytes_received; |
332 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657855 | |
333 RTCStatsMember<uint32_t> packets_lost; | 332 RTCStatsMember<uint32_t> packets_lost; |
334 // TODO(hbos): Not collected in the "video" case by |RTCStatsCollector|. | 333 // TODO(hbos): Not collected in the "video" case by |RTCStatsCollector|. |
335 // crbug.com/657855 | 334 // crbug.com/657855 |
336 RTCStatsMember<double> jitter; | 335 RTCStatsMember<double> jitter; |
337 RTCStatsMember<double> fraction_lost; | 336 RTCStatsMember<double> fraction_lost; |
338 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657855 | 337 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657855 |
339 RTCStatsMember<uint32_t> packets_discarded; | 338 RTCStatsMember<uint32_t> packets_discarded; |
340 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657855 | 339 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657855 |
341 RTCStatsMember<uint32_t> packets_repaired; | 340 RTCStatsMember<uint32_t> packets_repaired; |
342 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657855 | 341 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657855 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 RTCStatsMember<std::string> rtcp_transport_stats_id; | 390 RTCStatsMember<std::string> rtcp_transport_stats_id; |
392 RTCStatsMember<bool> active_connection; | 391 RTCStatsMember<bool> active_connection; |
393 RTCStatsMember<std::string> selected_candidate_pair_id; | 392 RTCStatsMember<std::string> selected_candidate_pair_id; |
394 RTCStatsMember<std::string> local_certificate_id; | 393 RTCStatsMember<std::string> local_certificate_id; |
395 RTCStatsMember<std::string> remote_certificate_id; | 394 RTCStatsMember<std::string> remote_certificate_id; |
396 }; | 395 }; |
397 | 396 |
398 } // namespace webrtc | 397 } // namespace webrtc |
399 | 398 |
400 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ | 399 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ |
OLD | NEW |