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

Unified Diff: webrtc/tools/py_event_log_analyzer/pb_parse.py

Issue 2123773002: Changes in UI and minor extra functionality for rtp_analyzer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/tools/py_event_log_analyzer/README ('k') | webrtc/tools/py_event_log_analyzer/rtp_analyzer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/py_event_log_analyzer/pb_parse.py
diff --git a/webrtc/tools/py_event_log_analyzer/pb_parse.py b/webrtc/tools/py_event_log_analyzer/pb_parse.py
index b1232f038e646f77deb21e3d8732285504022685..b0ca2b3354463a76e5f932758e21c580eedb6f43 100644
--- a/webrtc/tools/py_event_log_analyzer/pb_parse.py
+++ b/webrtc/tools/py_event_log_analyzer/pb_parse.py
@@ -28,6 +28,7 @@ class DataPoint(object):
(first2header_bytes, self.sequence_number, self.timestamp,
self.ssrc) = header
self.payload_type = first2header_bytes & 0b01111111
+ self.marker_bit = (first2header_bytes & 0b10000000) >> 7
def parse_protobuf(file_path):
« no previous file with comments | « webrtc/tools/py_event_log_analyzer/README ('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