From 665d181ccc312ea0b6900ae910912bc5d0c04c26 Mon Sep 17 00:00:00 2001 From: aleloi Date: Wed, 24 Aug 2016 01:48:23 -0700 Subject: [PATCH] Increased column width for python tool rtp_analyzer.py. TBR=phoglund@webrtc.org NOTRY=True Review-Url: https://codereview.webrtc.org/2247303008 Cr-Commit-Position: refs/heads/master@{#13881} --- webrtc/tools/py_event_log_analyzer/rtp_analyzer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/tools/py_event_log_analyzer/rtp_analyzer.py b/webrtc/tools/py_event_log_analyzer/rtp_analyzer.py index 0c25a1731e..1f7b3f84d9 100644 --- a/webrtc/tools/py_event_log_analyzer/rtp_analyzer.py +++ b/webrtc/tools/py_event_log_analyzer/rtp_analyzer.py @@ -48,10 +48,10 @@ class RTPStatistics(object): self.smooth_bw_kbps = None def print_header_statistics(self): - print("{:>6}{:>11}{:>11}{:>6}{:>6}{:>3}{:>11}".format( + print("{:>6}{:>14}{:>14}{:>6}{:>6}{:>3}{:>11}".format( "SeqNo", "TimeStamp", "SendTime", "Size", "PT", "M", "SSRC")) for point in self.data_points: - print("{:>6}{:>11}{:>11}{:>6}{:>6}{:>3}{:>11}".format( + print("{:>6}{:>14}{:>14}{:>6}{:>6}{:>3}{:>11}".format( point.sequence_number, point.timestamp, int(point.arrival_timestamp_ms), point.size, point.payload_type, point.marker_bit, "0x{:x}".format(point.ssrc)))