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

Side by Side Diff: webrtc/api/rtcstatscollector.cc

Issue 2607933002: RTCMediaStreamTrackStats.framesDropped collected by RTCStatsCollector. (Closed)
Patch Set: Added unittests for webrtcvideoengine2 and receive_statistics_proxy 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 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 video_track_stats->remote_source = true; 430 video_track_stats->remote_source = true;
431 video_track_stats->detached = false; 431 video_track_stats->detached = false;
432 if (video_receiver_info.frame_width > 0 && 432 if (video_receiver_info.frame_width > 0 &&
433 video_receiver_info.frame_height > 0) { 433 video_receiver_info.frame_height > 0) {
434 video_track_stats->frame_width = static_cast<uint32_t>( 434 video_track_stats->frame_width = static_cast<uint32_t>(
435 video_receiver_info.frame_width); 435 video_receiver_info.frame_width);
436 video_track_stats->frame_height = static_cast<uint32_t>( 436 video_track_stats->frame_height = static_cast<uint32_t>(
437 video_receiver_info.frame_height); 437 video_receiver_info.frame_height);
438 } 438 }
439 video_track_stats->frames_received = video_receiver_info.frames_received; 439 video_track_stats->frames_received = video_receiver_info.frames_received;
440 RTC_DCHECK_GE(video_receiver_info.frames_received,
441 video_receiver_info.frames_rendered);
442 video_track_stats->frames_dropped = video_receiver_info.frames_received -
443 video_receiver_info.frames_rendered;
440 return video_track_stats; 444 return video_track_stats;
441 } 445 }
442 446
443 void ProduceMediaStreamAndTrackStats( 447 void ProduceMediaStreamAndTrackStats(
444 int64_t timestamp_us, 448 int64_t timestamp_us,
445 const TrackMediaInfoMap& track_media_info_map, 449 const TrackMediaInfoMap& track_media_info_map,
446 rtc::scoped_refptr<StreamCollectionInterface> streams, 450 rtc::scoped_refptr<StreamCollectionInterface> streams,
447 bool is_local, 451 bool is_local,
448 RTCStatsReport* report) { 452 RTCStatsReport* report) {
449 // TODO(hbos): When "AddTrack" is implemented we should iterate tracks to 453 // TODO(hbos): When "AddTrack" is implemented we should iterate tracks to
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 const std::string& type) { 1214 const std::string& type) {
1211 return CandidateTypeToRTCIceCandidateType(type); 1215 return CandidateTypeToRTCIceCandidateType(type);
1212 } 1216 }
1213 1217
1214 const char* DataStateToRTCDataChannelStateForTesting( 1218 const char* DataStateToRTCDataChannelStateForTesting(
1215 DataChannelInterface::DataState state) { 1219 DataChannelInterface::DataState state) {
1216 return DataStateToRTCDataChannelState(state); 1220 return DataStateToRTCDataChannelState(state);
1217 } 1221 }
1218 1222
1219 } // namespace webrtc 1223 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698