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

Side by Side Diff: webrtc/tools/event_log_visualizer/analyzer.h

Issue 2145153002: Event log visualization tool keeps a map from SSRC to parsed headers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Nit 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/tools/event_log_visualizer/analyzer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ 11 #ifndef WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_
12 #define WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ 12 #define WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_
13 13
14 #include <vector> 14 #include <vector>
15 #include <map>
15 16
16 #include "webrtc/call/rtc_event_log_parser.h" 17 #include "webrtc/call/rtc_event_log_parser.h"
17 #include "webrtc/tools/event_log_visualizer/plot_base.h" 18 #include "webrtc/tools/event_log_visualizer/plot_base.h"
18 19
19 namespace webrtc { 20 namespace webrtc {
20 namespace plotting { 21 namespace plotting {
21 22
22 class EventLogAnalyzer { 23 class EventLogAnalyzer {
23 public: 24 public:
24 // The EventLogAnalyzer keeps a reference to the ParsedRtcEventLog for the 25 // The EventLogAnalyzer keeps a reference to the ParsedRtcEventLog for the
25 // duration of its lifetime. The ParsedRtcEventLog must not be destroyed or 26 // duration of its lifetime. The ParsedRtcEventLog must not be destroyed or
26 // modified while the EventLogAnalyzer is being used. 27 // modified while the EventLogAnalyzer is being used.
27 explicit EventLogAnalyzer(const ParsedRtcEventLog& log); 28 explicit EventLogAnalyzer(const ParsedRtcEventLog& log);
28 29
29 void CreatePacketGraph(PacketDirection desired_direction, Plot* plot); 30 void CreatePacketGraph(PacketDirection desired_direction, Plot* plot);
30 31
31 void CreatePlayoutGraph(Plot* plot); 32 void CreatePlayoutGraph(Plot* plot);
32 33
33 void CreateSequenceNumberGraph(Plot* plot); 34 void CreateSequenceNumberGraph(Plot* plot);
34 35
35 void CreateDelayChangeGraph(Plot* plot); 36 void CreateDelayChangeGraph(Plot* plot);
36 37
37 void CreateAccumulatedDelayChangeGraph(Plot* plot); 38 void CreateAccumulatedDelayChangeGraph(Plot* plot);
38 39
39 void CreateTotalBitrateGraph(PacketDirection desired_direction, Plot* plot); 40 void CreateTotalBitrateGraph(PacketDirection desired_direction, Plot* plot);
40 41
41 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot); 42 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot);
42 43
43 private: 44 private:
45 class StreamId {
46 public:
47 StreamId(uint32_t ssrc,
48 webrtc::PacketDirection direction,
49 webrtc::MediaType media_type)
50 : ssrc_(ssrc), direction_(direction), media_type_(media_type) {}
51 bool operator<(const StreamId& other) const;
52 bool operator==(const StreamId& other) const;
53 uint32_t GetSsrc() const { return ssrc_; }
54 webrtc::PacketDirection GetDirection() const { return direction_; }
55 webrtc::MediaType GetMediaType() const { return media_type_; }
56
57 private:
58 uint32_t ssrc_;
59 webrtc::PacketDirection direction_;
60 webrtc::MediaType media_type_;
61 };
62
63 struct LoggedRtpPacket {
64 LoggedRtpPacket(uint64_t timestamp, RTPHeader header)
65 : timestamp(timestamp), header(header) {}
66 uint64_t timestamp;
67 RTPHeader header;
68 };
69
44 const ParsedRtcEventLog& parsed_log_; 70 const ParsedRtcEventLog& parsed_log_;
45 71
46 // A list of SSRCs we are interested in analysing. 72 // A list of SSRCs we are interested in analysing.
47 // If left empty, all SSRCs will be considered relevant. 73 // If left empty, all SSRCs will be considered relevant.
48 std::vector<uint32_t> desired_ssrc_; 74 std::vector<uint32_t> desired_ssrc_;
49 75
76 // Maps a stream identifier consisting of ssrc, direction and MediaType
77 // to the parsed RTP headers in that stream. Header extensions are parsed
78 // if the stream has been configured.
79 std::map<StreamId, std::vector<LoggedRtpPacket>> rtp_packets_;
80
50 // Window and step size used for calculating moving averages, e.g. bitrate. 81 // Window and step size used for calculating moving averages, e.g. bitrate.
51 // The generated data points will be |step_| microseconds apart. 82 // The generated data points will be |step_| microseconds apart.
52 // Only events occuring at most |window_duration_| microseconds before the 83 // Only events occuring at most |window_duration_| microseconds before the
53 // current data point will be part of the average. 84 // current data point will be part of the average.
54 uint64_t window_duration_; 85 uint64_t window_duration_;
55 uint64_t step_; 86 uint64_t step_;
56 87
57 // First and last events of the log. 88 // First and last events of the log.
58 uint64_t begin_time_; 89 uint64_t begin_time_;
59 uint64_t end_time_; 90 uint64_t end_time_;
60 }; 91 };
61 92
62 } // namespace plotting 93 } // namespace plotting
63 } // namespace webrtc 94 } // namespace webrtc
64 95
65 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ 96 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/tools/event_log_visualizer/analyzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698