| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 Plot* plot); | 72 Plot* plot); |
| 73 | 73 |
| 74 void CreatePlayoutGraph(Plot* plot); | 74 void CreatePlayoutGraph(Plot* plot); |
| 75 | 75 |
| 76 void CreateAudioLevelGraph(Plot* plot); | 76 void CreateAudioLevelGraph(Plot* plot); |
| 77 | 77 |
| 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 CreateIncomingDelayDeltaGraph(Plot* plot); |
| 83 | 83 void CreateIncomingDelayGraph(Plot* plot); |
| 84 void CreateAccumulatedDelayChangeGraph(Plot* plot); | |
| 85 | 84 |
| 86 void CreateFractionLossGraph(Plot* plot); | 85 void CreateFractionLossGraph(Plot* plot); |
| 87 | 86 |
| 88 void CreateTotalBitrateGraph(PacketDirection desired_direction, | 87 void CreateTotalBitrateGraph(PacketDirection desired_direction, |
| 89 Plot* plot, | 88 Plot* plot, |
| 90 bool show_detector_state = false); | 89 bool show_detector_state = false); |
| 91 | 90 |
| 92 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot); | 91 void CreateStreamBitrateGraph(PacketDirection desired_direction, Plot* plot); |
| 93 | 92 |
| 94 void CreateBweSimulationGraph(Plot* plot); | 93 void CreateBweSimulationGraph(Plot* plot); |
| 95 | 94 |
| 96 void CreateNetworkDelayFeedbackGraph(Plot* plot); | 95 void CreateNetworkDelayFeedbackGraph(Plot* plot); |
| 97 void CreateTimestampGraph(Plot* plot); | 96 void CreateTimestampGraph(Plot* plot); |
| 98 | 97 |
| 99 void CreateAudioEncoderTargetBitrateGraph(Plot* plot); | 98 void CreateAudioEncoderTargetBitrateGraph(Plot* plot); |
| 100 void CreateAudioEncoderFrameLengthGraph(Plot* plot); | 99 void CreateAudioEncoderFrameLengthGraph(Plot* plot); |
| 101 void CreateAudioEncoderUplinkPacketLossFractionGraph(Plot* plot); | 100 void CreateAudioEncoderPacketLossGraph(Plot* plot); |
| 102 void CreateAudioEncoderEnableFecGraph(Plot* plot); | 101 void CreateAudioEncoderEnableFecGraph(Plot* plot); |
| 103 void CreateAudioEncoderEnableDtxGraph(Plot* plot); | 102 void CreateAudioEncoderEnableDtxGraph(Plot* plot); |
| 104 void CreateAudioEncoderNumChannelsGraph(Plot* plot); | 103 void CreateAudioEncoderNumChannelsGraph(Plot* plot); |
| 105 void CreateAudioJitterBufferGraph(const std::string& replacement_file_name, | 104 void CreateAudioJitterBufferGraph(const std::string& replacement_file_name, |
| 106 int file_sample_rate_hz, | 105 int file_sample_rate_hz, |
| 107 Plot* plot); | 106 Plot* plot); |
| 108 | 107 |
| 109 // Returns a vector of capture and arrival timestamps for the video frames | 108 // Returns a vector of capture and arrival timestamps for the video frames |
| 110 // of the stream with the most number of frames. | 109 // of the stream with the most number of frames. |
| 111 std::vector<std::pair<int64_t, int64_t>> GetFrameTimestamps() const; | 110 std::vector<std::pair<int64_t, int64_t>> GetFrameTimestamps() const; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 uint64_t end_time_; | 198 uint64_t end_time_; |
| 200 | 199 |
| 201 // Duration (in seconds) of log file. | 200 // Duration (in seconds) of log file. |
| 202 float call_duration_s_; | 201 float call_duration_s_; |
| 203 }; | 202 }; |
| 204 | 203 |
| 205 } // namespace plotting | 204 } // namespace plotting |
| 206 } // namespace webrtc | 205 } // namespace webrtc |
| 207 | 206 |
| 208 #endif // WEBRTC_RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ | 207 #endif // WEBRTC_RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ |
| OLD | NEW |