| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 void CreateIncomingDelayGraph(Plot* plot); | 83 void CreateIncomingDelayGraph(Plot* plot); |
| 84 | 84 |
| 85 void CreateFractionLossGraph(Plot* plot); | 85 void CreateFractionLossGraph(Plot* plot); |
| 86 | 86 |
| 87 void CreateTotalBitrateGraph(PacketDirection desired_direction, | 87 void CreateTotalBitrateGraph(PacketDirection desired_direction, |
| 88 Plot* plot, | 88 Plot* plot, |
| 89 bool show_detector_state = false); | 89 bool show_detector_state = false); |
| 90 | 90 |
| 91 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot); | 91 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot); |
| 92 | 92 |
| 93 void CreateBweSimulationGraph(Plot* plot); | 93 void CreateSendSideBweSimulationGraph(Plot* plot); |
| 94 void CreateReceiveSideBweSimulationGraph(Plot* plot); |
| 94 | 95 |
| 95 void CreateNetworkDelayFeedbackGraph(Plot* plot); | 96 void CreateNetworkDelayFeedbackGraph(Plot* plot); |
| 96 void CreateTimestampGraph(Plot* plot); | 97 void CreateTimestampGraph(Plot* plot); |
| 97 | 98 |
| 98 void CreateAudioEncoderTargetBitrateGraph(Plot* plot); | 99 void CreateAudioEncoderTargetBitrateGraph(Plot* plot); |
| 99 void CreateAudioEncoderFrameLengthGraph(Plot* plot); | 100 void CreateAudioEncoderFrameLengthGraph(Plot* plot); |
| 100 void CreateAudioEncoderPacketLossGraph(Plot* plot); | 101 void CreateAudioEncoderPacketLossGraph(Plot* plot); |
| 101 void CreateAudioEncoderEnableFecGraph(Plot* plot); | 102 void CreateAudioEncoderEnableFecGraph(Plot* plot); |
| 102 void CreateAudioEncoderEnableDtxGraph(Plot* plot); | 103 void CreateAudioEncoderEnableDtxGraph(Plot* plot); |
| 103 void CreateAudioEncoderNumChannelsGraph(Plot* plot); | 104 void CreateAudioEncoderNumChannelsGraph(Plot* plot); |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 uint64_t end_time_; | 199 uint64_t end_time_; |
| 199 | 200 |
| 200 // Duration (in seconds) of log file. | 201 // Duration (in seconds) of log file. |
| 201 float call_duration_s_; | 202 float call_duration_s_; |
| 202 }; | 203 }; |
| 203 | 204 |
| 204 } // namespace plotting | 205 } // namespace plotting |
| 205 } // namespace webrtc | 206 } // namespace webrtc |
| 206 | 207 |
| 207 #endif // WEBRTC_RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ | 208 #endif // WEBRTC_RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ |
| OLD | NEW |