From 5be3bbd63999004d18590c3746b24f63c1685c08 Mon Sep 17 00:00:00 2001 From: Konrad Hofbauer Date: Mon, 21 Jan 2019 12:31:07 +0100 Subject: [PATCH] Clarify and unify network delay plot annotations. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: none Change-Id: Ib66b4a926f9504cba52edf81d6afb17bb4c221ce Reviewed-on: https://webrtc-review.googlesource.com/c/118684 Commit-Queue: Konrad Hofbauer Reviewed-by: Björn Terelius Cr-Commit-Position: refs/heads/master@{#26349} --- rtc_tools/event_log_visualizer/analyzer.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rtc_tools/event_log_visualizer/analyzer.cc b/rtc_tools/event_log_visualizer/analyzer.cc index 79e1e17c61..e854a2fac2 100644 --- a/rtc_tools/event_log_visualizer/analyzer.cc +++ b/rtc_tools/event_log_visualizer/analyzer.cc @@ -793,9 +793,8 @@ void EventLogAnalyzer::CreateIncomingDelayGraph(Plot* plot) { plot->SetXAxis(ToCallTimeSec(begin_time_), call_duration_s_, "Time (s)", kLeftMargin, kRightMargin); - plot->SetSuggestedYAxis(0, 1, "Latency change (ms)", kBottomMargin, - kTopMargin); - plot->SetTitle("Network latency (relative to first packet)"); + plot->SetSuggestedYAxis(0, 1, "Delay (ms)", kBottomMargin, kTopMargin); + plot->SetTitle("Incoming network delay (relative to first packet)"); } // Plot the fraction of packets lost (as perceived by the loss-based BWE). @@ -1334,7 +1333,7 @@ void EventLogAnalyzer::CreateNetworkDelayFeedbackGraph(Plot* plot) { plot->SetXAxis(ToCallTimeSec(begin_time_), call_duration_s_, "Time (s)", kLeftMargin, kRightMargin); plot->SetSuggestedYAxis(0, 10, "Delay (ms)", kBottomMargin, kTopMargin); - plot->SetTitle("Network delay (based on per-packet feedback)"); + plot->SetTitle("Outgoing network delay (based on per-packet feedback)"); } void EventLogAnalyzer::CreatePacerDelayGraph(Plot* plot) {