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

Unified Diff: webrtc/api/statscollector.cc

Issue 2423823003: Implement framesDecoded stat in video receive ssrc stats. (Closed)
Patch Set: More unittests. Created 4 years, 2 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
« no previous file with comments | « no previous file | webrtc/api/statscollector_unittest.cc » ('j') | webrtc/media/base/mediachannel.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/statscollector.cc
diff --git a/webrtc/api/statscollector.cc b/webrtc/api/statscollector.cc
index aed6b3f4d8b2977c80571d7e01cdd2d33ac6cd5e..417e7a04d68d18f0d4f38a343e6cea8f35e9831e 100644
--- a/webrtc/api/statscollector.cc
+++ b/webrtc/api/statscollector.cc
@@ -228,6 +228,7 @@ void ExtractStats(const cricket::VideoReceiverInfo& info, StatsReport* report) {
{ StatsReport::kStatsValueNamePlisSent, info.plis_sent },
{ StatsReport::kStatsValueNameRenderDelayMs, info.render_delay_ms },
{ StatsReport::kStatsValueNameTargetDelayMs, info.target_delay_ms },
+ { StatsReport::kStatsValueNameFramesDecoded, info.frames_decoded },
};
for (const auto& i : ints)
« no previous file with comments | « no previous file | webrtc/api/statscollector_unittest.cc » ('j') | webrtc/media/base/mediachannel.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698