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

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

Issue 2317113003: Add a chart for packet loss on incoming streams. (Closed)
Patch Set: Comments addressed. Created 4 years, 3 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/tools/event_log_visualizer/analyzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/event_log_visualizer/analyzer.h
diff --git a/webrtc/tools/event_log_visualizer/analyzer.h b/webrtc/tools/event_log_visualizer/analyzer.h
index 74c0ff08759357f2ca0638128a3fbd041fd86a5c..402f75f904a422370bb73c3029ad8df5eefa7bdf 100644
--- a/webrtc/tools/event_log_visualizer/analyzer.h
+++ b/webrtc/tools/event_log_visualizer/analyzer.h
@@ -68,6 +68,8 @@ class EventLogAnalyzer {
void CreateSequenceNumberGraph(Plot* plot);
+ void CreateIncomingPacketLossGraph(Plot* plot);
+
void CreateDelayChangeGraph(Plot* plot);
void CreateAccumulatedDelayChangeGraph(Plot* plot);
@@ -110,11 +112,13 @@ class EventLogAnalyzer {
const std::map<StreamId, std::vector<T>>& packets,
const std::string& label_prefix);
- bool IsRtxSsrc(StreamId stream_id);
+ bool IsRtxSsrc(StreamId stream_id) const;
+
+ bool IsVideoSsrc(StreamId stream_id) const;
- bool IsVideoSsrc(StreamId stream_id);
+ bool IsAudioSsrc(StreamId stream_id) const;
- bool IsAudioSsrc(StreamId stream_id);
+ std::string GetStreamName(StreamId) const;
const ParsedRtcEventLog& parsed_log_;
« no previous file with comments | « no previous file | webrtc/tools/event_log_visualizer/analyzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698