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

Side by Side Diff: webrtc/api/stats/rtcstats_objects.h

Issue 2610843003: RTC[In/Out]boundRTPStreamStats.mediaTrackId collected. (Closed)
Patch Set: Rebase with master 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
« no previous file with comments | « webrtc/api/rtcstatscollector_unittest.cc ('k') | webrtc/api/statscollector_unittest.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 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 ~RTCRTPStreamStats() override; 288 ~RTCRTPStreamStats() override;
289 289
290 RTCStatsMember<std::string> ssrc; 290 RTCStatsMember<std::string> ssrc;
291 // TODO(hbos): When the remote case is supported |RTCStatsCollector| needs to 291 // TODO(hbos): When the remote case is supported |RTCStatsCollector| needs to
292 // set this. crbug.com/657855, 657856 292 // set this. crbug.com/657855, 657856
293 RTCStatsMember<std::string> associate_stats_id; 293 RTCStatsMember<std::string> associate_stats_id;
294 // TODO(hbos): Remote case not supported by |RTCStatsCollector|. 294 // TODO(hbos): Remote case not supported by |RTCStatsCollector|.
295 // crbug.com/657855, 657856 295 // crbug.com/657855, 657856
296 RTCStatsMember<bool> is_remote; // = false 296 RTCStatsMember<bool> is_remote; // = false
297 RTCStatsMember<std::string> media_type; 297 RTCStatsMember<std::string> media_type;
298 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657854, 659137
299 RTCStatsMember<std::string> media_track_id; 298 RTCStatsMember<std::string> media_track_id;
300 RTCStatsMember<std::string> transport_id; 299 RTCStatsMember<std::string> transport_id;
301 RTCStatsMember<std::string> codec_id; 300 RTCStatsMember<std::string> codec_id;
302 // FIR and PLI counts are only defined for |media_type == "video"|. 301 // FIR and PLI counts are only defined for |media_type == "video"|.
303 RTCStatsMember<uint32_t> fir_count; 302 RTCStatsMember<uint32_t> fir_count;
304 RTCStatsMember<uint32_t> pli_count; 303 RTCStatsMember<uint32_t> pli_count;
305 // TODO(hbos): NACK count should be collected by |RTCStatsCollector| for both 304 // TODO(hbos): NACK count should be collected by |RTCStatsCollector| for both
306 // audio and video but is only defined in the "video" case. crbug.com/657856 305 // audio and video but is only defined in the "video" case. crbug.com/657856
307 RTCStatsMember<uint32_t> nack_count; 306 RTCStatsMember<uint32_t> nack_count;
308 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657854 307 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657854
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 RTCStatsMember<std::string> rtcp_transport_stats_id; 393 RTCStatsMember<std::string> rtcp_transport_stats_id;
395 RTCStatsMember<bool> active_connection; 394 RTCStatsMember<bool> active_connection;
396 RTCStatsMember<std::string> selected_candidate_pair_id; 395 RTCStatsMember<std::string> selected_candidate_pair_id;
397 RTCStatsMember<std::string> local_certificate_id; 396 RTCStatsMember<std::string> local_certificate_id;
398 RTCStatsMember<std::string> remote_certificate_id; 397 RTCStatsMember<std::string> remote_certificate_id;
399 }; 398 };
400 399
401 } // namespace webrtc 400 } // namespace webrtc
402 401
403 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ 402 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_
OLDNEW
« no previous file with comments | « webrtc/api/rtcstatscollector_unittest.cc ('k') | webrtc/api/statscollector_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698