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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
78 void CreateSequenceNumberGraph(Plot* plot); | 78 void CreateSequenceNumberGraph(Plot* plot); |
79 | 79 |
80 void CreateIncomingPacketLossGraph(Plot* plot); | 80 void CreateIncomingPacketLossGraph(Plot* plot); |
81 | 81 |
82 void CreateDelayChangeGraph(Plot* plot); | 82 void CreateDelayChangeGraph(Plot* plot); |
83 | 83 |
84 void CreateAccumulatedDelayChangeGraph(Plot* plot); | 84 void CreateAccumulatedDelayChangeGraph(Plot* plot); |
85 | 85 |
86 void CreateFractionLossGraph(Plot* plot); | 86 void CreateFractionLossGraph(Plot* plot); |
87 | 87 |
88 void CreateTotalBitrateGraph(PacketDirection desired_direction, Plot* plot); | 88 void CreateTotalBitrateGraph(PacketDirection desired_direction, |
89 Plot* plot, | |
90 bool show_detector_state); | |
terelius
2017/04/24 11:58:06
Please give show_detector_state a default value fa
philipel
2017/04/26 12:56:28
Done.
| |
89 | 91 |
90 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot); | 92 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot); |
91 | 93 |
92 void CreateBweSimulationGraph(Plot* plot); | 94 void CreateBweSimulationGraph(Plot* plot); |
93 | 95 |
94 void CreateNetworkDelayFeedbackGraph(Plot* plot); | 96 void CreateNetworkDelayFeedbackGraph(Plot* plot); |
95 void CreateTimestampGraph(Plot* plot); | 97 void CreateTimestampGraph(Plot* plot); |
96 | 98 |
97 void CreateAudioEncoderTargetBitrateGraph(Plot* plot); | 99 void CreateAudioEncoderTargetBitrateGraph(Plot* plot); |
98 void CreateAudioEncoderFrameLengthGraph(Plot* plot); | 100 void CreateAudioEncoderFrameLengthGraph(Plot* plot); |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
187 uint64_t end_time_; | 189 uint64_t end_time_; |
188 | 190 |
189 // Duration (in seconds) of log file. | 191 // Duration (in seconds) of log file. |
190 float call_duration_s_; | 192 float call_duration_s_; |
191 }; | 193 }; |
192 | 194 |
193 } // namespace plotting | 195 } // namespace plotting |
194 } // namespace webrtc | 196 } // namespace webrtc |
195 | 197 |
196 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ | 198 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ |
OLD | NEW |