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

Unified Diff: webrtc/rtc_tools/event_log_visualizer/analyzer.h

Issue 2997883002: Video/Screenshare loopback tool.
Patch Set: Rebase Created 3 years, 4 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/rtc_tools/event_log_visualizer/analyzer.h
diff --git a/webrtc/rtc_tools/event_log_visualizer/analyzer.h b/webrtc/rtc_tools/event_log_visualizer/analyzer.h
index 328fc531babc068ef22cc1a129a6ed7b7995b70a..0e0e36376962ec25d088a65c4f39387d21a1d863 100644
--- a/webrtc/rtc_tools/event_log_visualizer/analyzer.h
+++ b/webrtc/rtc_tools/event_log_visualizer/analyzer.h
@@ -105,6 +105,8 @@ class EventLogAnalyzer {
int file_sample_rate_hz,
Plot* plot);
+ void CreateQueueDelayGraph(Plot* plot);
+
// Returns a vector of capture and arrival timestamps for the video frames
// of the stream with the most number of frames.
std::vector<std::pair<int64_t, int64_t>> GetFrameTimestamps() const;
@@ -186,6 +188,12 @@ class EventLogAnalyzer {
std::vector<ParsedRtcEventLog::BweDelayBasedUpdate> bwe_delay_updates_;
+ std::vector<ParsedRtcEventLog::BweAckedBitrateEvent> acked_bitrate_events_;
+
+ std::vector<ParsedRtcEventLog::AlrStateEvent> alr_state_events_;
+
+ std::vector<ParsedRtcEventLog::PacketQueueTime> packet_queue_time_events_;
+
// Window and step size used for calculating moving averages, e.g. bitrate.
// The generated data points will be |step_| microseconds apart.
// Only events occuring at most |window_duration_| microseconds before the
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/send_time_history.cc ('k') | webrtc/rtc_tools/event_log_visualizer/analyzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698