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

Unified Diff: webrtc/video/stats_counter.cc

Issue 2494423002: Add ToString method to AggregatedStats and log stats at the end of a call. (Closed)
Patch Set: Created 4 years, 1 month 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 | « webrtc/video/stats_counter.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/stats_counter.cc
diff --git a/webrtc/video/stats_counter.cc b/webrtc/video/stats_counter.cc
index 9923ed20d7a2e2a25c6bcb078ea7a8b42e9190a2..b1c24ee67328745b54e5915301f6fc70d4118a81 100644
--- a/webrtc/video/stats_counter.cc
+++ b/webrtc/video/stats_counter.cc
@@ -25,6 +25,15 @@ const int64_t kDefaultProcessIntervalMs = 2000;
const uint32_t kStreamId0 = 0;
} // namespace
+std::string AggregatedStats::ToString() const {
+ std::stringstream ss;
+ ss << "periodic_samples:" << num_samples << ", {";
+ ss << "min:" << min << ", ";
+ ss << "avg:" << average << ", ";
+ ss << "max:" << max << "}";
+ return ss.str();
+}
+
// Class holding periodically computed metrics.
class AggregatedCounter {
public:
« no previous file with comments | « webrtc/video/stats_counter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698