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

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

Issue 2346363003: Added graph for plotting the audio level from an Rtc event log. (Closed)
Patch Set: Addressed comments by hlundin and terelius. Created 4 years, 3 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
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 // modified while the EventLogAnalyzer is being used. 59 // modified while the EventLogAnalyzer is being used.
60 explicit EventLogAnalyzer(const ParsedRtcEventLog& log); 60 explicit EventLogAnalyzer(const ParsedRtcEventLog& log);
61 61
62 void CreatePacketGraph(PacketDirection desired_direction, Plot* plot); 62 void CreatePacketGraph(PacketDirection desired_direction, Plot* plot);
63 63
64 void CreateAccumulatedPacketsGraph(PacketDirection desired_direction, 64 void CreateAccumulatedPacketsGraph(PacketDirection desired_direction,
65 Plot* plot); 65 Plot* plot);
66 66
67 void CreatePlayoutGraph(Plot* plot); 67 void CreatePlayoutGraph(Plot* plot);
68 68
69 void CreateAudioLevelGraph(Plot* plot);
70
69 void CreateSequenceNumberGraph(Plot* plot); 71 void CreateSequenceNumberGraph(Plot* plot);
70 72
71 void CreateIncomingPacketLossGraph(Plot* plot); 73 void CreateIncomingPacketLossGraph(Plot* plot);
72 74
73 void CreateDelayChangeGraph(Plot* plot); 75 void CreateDelayChangeGraph(Plot* plot);
74 76
75 void CreateAccumulatedDelayChangeGraph(Plot* plot); 77 void CreateAccumulatedDelayChangeGraph(Plot* plot);
76 78
77 void CreateFractionLossGraph(Plot* plot); 79 void CreateFractionLossGraph(Plot* plot);
78 80
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 uint64_t end_time_; 159 uint64_t end_time_;
158 160
159 // Duration (in seconds) of log file. 161 // Duration (in seconds) of log file.
160 float call_duration_s_; 162 float call_duration_s_;
161 }; 163 };
162 164
163 } // namespace plotting 165 } // namespace plotting
164 } // namespace webrtc 166 } // namespace webrtc
165 167
166 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ 168 #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