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

Unified Diff: webrtc/video/video_receive_stream.cc

Issue 2946413002: Report timing frames info in GetStats. (Closed)
Patch Set: Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/video/video_receive_stream.cc
diff --git a/webrtc/video/video_receive_stream.cc b/webrtc/video/video_receive_stream.cc
index acc497b616433e771a2259247f1360cbd1619095..572e567ce0de01322990c78515713c7736663a6e 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -132,7 +132,8 @@ std::string VideoReceiveStream::Stats::ToString(int64_t time_ms) const {
ss << "max_ext_seq: " << rtcp_stats.extended_max_sequence_number << ", ";
ss << "nack: " << rtcp_packet_type_counts.nack_packets << ", ";
ss << "fir: " << rtcp_packet_type_counts.fir_packets << ", ";
- ss << "pli: " << rtcp_packet_type_counts.pli_packets;
+ ss << "pli: " << rtcp_packet_type_counts.pli_packets << ", ";
+ ss << "timing_frame_info: " << timing_frame_info.ToString();
ss << '}';
return ss.str();
}

Powered by Google App Engine
This is Rietveld 408576698