OLD | NEW |
---|---|
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 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
53 | 53 |
54 class EventLogAnalyzer { | 54 class EventLogAnalyzer { |
55 public: | 55 public: |
56 // The EventLogAnalyzer keeps a reference to the ParsedRtcEventLog for the | 56 // The EventLogAnalyzer keeps a reference to the ParsedRtcEventLog for the |
57 // duration of its lifetime. The ParsedRtcEventLog must not be destroyed or | 57 // duration of its lifetime. The ParsedRtcEventLog must not be destroyed or |
58 // modified while the EventLogAnalyzer is being used. | 58 // modified while the EventLogAnalyzer is being used. |
59 explicit EventLogAnalyzer(const ParsedRtcEventLog& log); | 59 explicit EventLogAnalyzer(const ParsedRtcEventLog& log); |
60 | 60 |
61 void CreatePacketGraph(PacketDirection desired_direction, Plot* plot); | 61 void CreatePacketGraph(PacketDirection desired_direction, Plot* plot); |
62 | 62 |
63 void CreateAccumelatedPacketsGraph(PacketDirection desired_direction, | |
stefan-webrtc
2016/09/02 12:12:17
Accumulated
philipel
2016/09/02 13:15:25
Done.
| |
64 Plot* plot); | |
65 | |
63 void CreatePlayoutGraph(Plot* plot); | 66 void CreatePlayoutGraph(Plot* plot); |
64 | 67 |
65 void CreateSequenceNumberGraph(Plot* plot); | 68 void CreateSequenceNumberGraph(Plot* plot); |
66 | 69 |
67 void CreateDelayChangeGraph(Plot* plot); | 70 void CreateDelayChangeGraph(Plot* plot); |
68 | 71 |
69 void CreateAccumulatedDelayChangeGraph(Plot* plot); | 72 void CreateAccumulatedDelayChangeGraph(Plot* plot); |
70 | 73 |
71 void CreateFractionLossGraph(Plot* plot); | 74 void CreateFractionLossGraph(Plot* plot); |
72 | 75 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
142 uint64_t end_time_; | 145 uint64_t end_time_; |
143 | 146 |
144 // Duration (in seconds) of log file. | 147 // Duration (in seconds) of log file. |
145 float call_duration_s_; | 148 float call_duration_s_; |
146 }; | 149 }; |
147 | 150 |
148 } // namespace plotting | 151 } // namespace plotting |
149 } // namespace webrtc | 152 } // namespace webrtc |
150 | 153 |
151 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ | 154 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ |
OLD | NEW |