Add a chart for packet loss on incoming streams.

Also add stream names to labels.

R=philipel@webrtc.org

Review URL: https://codereview.webrtc.org/2317113003 .

Cr-Commit-Position: refs/heads/master@{#14159}
This commit is contained in:
Stefan Holmer
2016-09-09 13:37:50 +02:00
parent 073378e79a
commit 99f8e0841a
3 changed files with 85 additions and 20 deletions

View File

@ -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);
bool IsVideoSsrc(StreamId stream_id) const;
bool IsAudioSsrc(StreamId stream_id);
bool IsAudioSsrc(StreamId stream_id) const;
std::string GetStreamName(StreamId) const;
const ParsedRtcEventLog& parsed_log_;