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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 ~RTCRTPStreamStats() override; | 290 ~RTCRTPStreamStats() override; |
291 | 291 |
292 RTCStatsMember<std::string> ssrc; | 292 RTCStatsMember<std::string> ssrc; |
293 // TODO(hbos): When the remote case is supported |RTCStatsCollector| needs to | 293 // TODO(hbos): When the remote case is supported |RTCStatsCollector| needs to |
294 // set this. crbug.com/657855, 657856 | 294 // set this. crbug.com/657855, 657856 |
295 RTCStatsMember<std::string> associate_stats_id; | 295 RTCStatsMember<std::string> associate_stats_id; |
296 // TODO(hbos): Remote case not supported by |RTCStatsCollector|. | 296 // TODO(hbos): Remote case not supported by |RTCStatsCollector|. |
297 // crbug.com/657855, 657856 | 297 // crbug.com/657855, 657856 |
298 RTCStatsMember<bool> is_remote; // = false | 298 RTCStatsMember<bool> is_remote; // = false |
299 RTCStatsMember<std::string> media_type; | 299 RTCStatsMember<std::string> media_type; |
300 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657854, 659137 | |
301 RTCStatsMember<std::string> media_track_id; | 300 RTCStatsMember<std::string> media_track_id; |
302 RTCStatsMember<std::string> transport_id; | 301 RTCStatsMember<std::string> transport_id; |
303 RTCStatsMember<std::string> codec_id; | 302 RTCStatsMember<std::string> codec_id; |
304 // FIR and PLI counts are only defined for |media_type == "video"|. | 303 // FIR and PLI counts are only defined for |media_type == "video"|. |
305 RTCStatsMember<uint32_t> fir_count; | 304 RTCStatsMember<uint32_t> fir_count; |
306 RTCStatsMember<uint32_t> pli_count; | 305 RTCStatsMember<uint32_t> pli_count; |
307 // TODO(hbos): NACK count should be collected by |RTCStatsCollector| for both | 306 // TODO(hbos): NACK count should be collected by |RTCStatsCollector| for both |
308 // audio and video but is only defined in the "video" case. crbug.com/657856 | 307 // audio and video but is only defined in the "video" case. crbug.com/657856 |
309 RTCStatsMember<uint32_t> nack_count; | 308 RTCStatsMember<uint32_t> nack_count; |
310 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657854 | 309 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657854 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 RTCStatsMember<std::string> rtcp_transport_stats_id; | 395 RTCStatsMember<std::string> rtcp_transport_stats_id; |
397 RTCStatsMember<bool> active_connection; | 396 RTCStatsMember<bool> active_connection; |
398 RTCStatsMember<std::string> selected_candidate_pair_id; | 397 RTCStatsMember<std::string> selected_candidate_pair_id; |
399 RTCStatsMember<std::string> local_certificate_id; | 398 RTCStatsMember<std::string> local_certificate_id; |
400 RTCStatsMember<std::string> remote_certificate_id; | 399 RTCStatsMember<std::string> remote_certificate_id; |
401 }; | 400 }; |
402 | 401 |
403 } // namespace webrtc | 402 } // namespace webrtc |
404 | 403 |
405 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ | 404 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ |
OLD | NEW |