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

Side by Side Diff: webrtc/tools/py_event_log_analyzer/pb_parse.py

Issue 1999113002: New rtc dump analyzing tool in Python (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added protobuf dependency back. Created 4 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 #
3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8
9 """Parses protobuf RTC dumps."""
10
11 from __future__ import division
12 import struct
13 import pyproto.webrtc.call.rtc_event_log_pb2 as rtc_pb
14
15
16 class DataPoint(object):
17 """Simple container class for RTP events."""
18
19 def __init__(self, rtp_header_str, packet_size,
20 arrival_timestamp_us):
21 """Builds a data point by parsing an RTP header, size and arrival time.
22
23 RTP header structure is defined in RFC 3550 section 5.1.
24 """
25 self.size = packet_size
26 self.arrival_timestamp_ms = arrival_timestamp_us / 1000
27 header = struct.unpack_from("!HHII", rtp_header_str, 0)
28 (first2header_bytes, self.sequence_number, self.timestamp,
29 self.ssrc) = header
30 self.payload_type = first2header_bytes & 0b01111111
31
32
33 def parse_protobuf(file_path):
34 """Parses RTC event log from protobuf file.
35
36 Args:
37 file_path: path to protobuf file of RTC event stream
38
39 Returns:
40 all RTP packet events from the event stream as a list of DataPoints
41 """
42 event_stream = rtc_pb.EventStream()
43 with open(file_path, "rb") as f:
44 event_stream.ParseFromString(f.read())
45
46 return [DataPoint(event.rtp_packet.header,
47 event.rtp_packet.packet_length,
48 event.timestamp_us)
49 for event in event_stream.stream
50 if event.HasField("rtp_packet")]
OLDNEW
« no previous file with comments | « webrtc/tools/py_event_log_analyzer/misc_test.py ('k') | webrtc/tools/py_event_log_analyzer/rtp_analyzer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698