Index: webrtc/api/rtcstatscollector.cc |
diff --git a/webrtc/api/rtcstatscollector.cc b/webrtc/api/rtcstatscollector.cc |
index c54619ef5d189e77723c0f540c79a73977668bd3..0747c8d2761ac560e0106a41cfeec33d00837069 100644 |
--- a/webrtc/api/rtcstatscollector.cc |
+++ b/webrtc/api/rtcstatscollector.cc |
@@ -446,6 +446,12 @@ void ProduceMediaStreamAndTrackStats( |
if (sender_info) { |
video_track_stats->ssrc_ids = StringSsrcsFromSsrcs( |
sender_info->ssrcs()); |
+ video_track_stats->frame_width = static_cast<uint32_t>( |
+ sender_info->send_frame_width); |
+ video_track_stats->frame_height = static_cast<uint32_t>( |
+ sender_info->send_frame_height); |
+ video_track_stats->frames_per_second = static_cast<double>( |
+ sender_info->framerate_sent); |
hbos
2016/12/29 12:45:41
Alternatively, VideoSenderInfo has framerate_input
Taylor Brandstetter
2017/01/04 23:25:23
I'm not completely sure that framerate_sent (or fr
|
} |
} else { |
const cricket::VideoReceiverInfo* receiver_info = |
@@ -453,20 +459,18 @@ void ProduceMediaStreamAndTrackStats( |
if (receiver_info) { |
video_track_stats->ssrc_ids = StringSsrcsFromSsrcs( |
receiver_info->ssrcs()); |
+ video_track_stats->frame_width = static_cast<uint32_t>( |
+ receiver_info->frame_width); |
+ video_track_stats->frame_height = static_cast<uint32_t>( |
+ receiver_info->frame_height); |
+ video_track_stats->frames_per_second = static_cast<double>( |
+ receiver_info->framerate_output); |
hbos
2016/12/29 12:45:41
Alternatively, VideoReceiverInfo also has framerat
Taylor Brandstetter
2017/01/04 23:25:23
I'm also not sure that this is completely right. F
|
+ video_track_stats->frames_decoded = receiver_info->frames_decoded; |
hbos
2016/12/29 15:29:28
Uhm, this is the same as RTCInboundRTPStreamStats.
hta-webrtc
2017/01/02 16:06:42
Add a TODO to count the frames delivered to the tr
Taylor Brandstetter
2017/01/04 23:25:23
I believe this already does count the frames deliv
|
} |
} |
} |
video_track_stats->remote_source = !is_local; |
video_track_stats->detached = false; |
- if (video_track->GetSource()) { |
- VideoTrackSourceInterface::Stats video_track_source_stats; |
- if (video_track->GetSource()->GetStats(&video_track_source_stats)) { |
- video_track_stats->frame_width = static_cast<uint32_t>( |
- video_track_source_stats.input_width); |
- video_track_stats->frame_height = static_cast<uint32_t>( |
- video_track_source_stats.input_height); |
hbos
2016/12/29 12:45:41
These sizes correspond to googFrame[Width/Height]I
hbos
2016/12/29 14:24:48
I also found out that this was not available in th
|
- } |
- } |
report->AddStats(std::move(video_track_stats)); |
} |
report->AddStats(std::move(stream_stats)); |