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

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

Issue 2965593002: Move webrtc/{tools => rtc_tools} (Closed)
Patch Set: Adding back root changes Created 3 years, 5 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
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 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 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 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 """Parses protobuf RTC dumps.""" 9 """Parses protobuf RTC dumps."""
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 """ 43 """
44 event_stream = rtc_pb.EventStream() 44 event_stream = rtc_pb.EventStream()
45 with open(file_path, "rb") as f: 45 with open(file_path, "rb") as f:
46 event_stream.ParseFromString(f.read()) 46 event_stream.ParseFromString(f.read())
47 47
48 return [DataPoint(event.rtp_packet.header, 48 return [DataPoint(event.rtp_packet.header,
49 event.rtp_packet.packet_length, 49 event.rtp_packet.packet_length,
50 event.timestamp_us, event.rtp_packet.incoming) 50 event.timestamp_us, event.rtp_packet.incoming)
51 for event in event_stream.stream 51 for event in event_stream.stream
52 if event.HasField("rtp_packet")] 52 if event.HasField("rtp_packet")]
OLDNEW
« no previous file with comments | « webrtc/rtc_tools/py_event_log_analyzer/misc_test.py ('k') | webrtc/rtc_tools/py_event_log_analyzer/rtp_analyzer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698