| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 // has been configured. | 160 // has been configured. |
| 161 std::map<StreamId, std::vector<LoggedRtpPacket>> rtp_packets_; | 161 std::map<StreamId, std::vector<LoggedRtpPacket>> rtp_packets_; |
| 162 | 162 |
| 163 std::map<StreamId, std::vector<LoggedRtcpPacket>> rtcp_packets_; | 163 std::map<StreamId, std::vector<LoggedRtcpPacket>> rtcp_packets_; |
| 164 | 164 |
| 165 // A list of all updates from the send-side loss-based bandwidth estimator. | 165 // A list of all updates from the send-side loss-based bandwidth estimator. |
| 166 std::vector<LossBasedBweUpdate> bwe_loss_updates_; | 166 std::vector<LossBasedBweUpdate> bwe_loss_updates_; |
| 167 | 167 |
| 168 std::vector<AudioNetworkAdaptationEvent> audio_network_adaptation_events_; | 168 std::vector<AudioNetworkAdaptationEvent> audio_network_adaptation_events_; |
| 169 | 169 |
| 170 std::vector<ParsedRtcEventLog::BweProbeClusterCreatedEvent> |
| 171 bwe_probe_cluster_created_events_; |
| 172 |
| 173 std::vector<ParsedRtcEventLog::BweProbeResultEvent> bwe_probe_result_events_; |
| 174 |
| 170 // Window and step size used for calculating moving averages, e.g. bitrate. | 175 // Window and step size used for calculating moving averages, e.g. bitrate. |
| 171 // The generated data points will be |step_| microseconds apart. | 176 // The generated data points will be |step_| microseconds apart. |
| 172 // Only events occuring at most |window_duration_| microseconds before the | 177 // Only events occuring at most |window_duration_| microseconds before the |
| 173 // current data point will be part of the average. | 178 // current data point will be part of the average. |
| 174 uint64_t window_duration_; | 179 uint64_t window_duration_; |
| 175 uint64_t step_; | 180 uint64_t step_; |
| 176 | 181 |
| 177 // First and last events of the log. | 182 // First and last events of the log. |
| 178 uint64_t begin_time_; | 183 uint64_t begin_time_; |
| 179 uint64_t end_time_; | 184 uint64_t end_time_; |
| 180 | 185 |
| 181 // Duration (in seconds) of log file. | 186 // Duration (in seconds) of log file. |
| 182 float call_duration_s_; | 187 float call_duration_s_; |
| 183 }; | 188 }; |
| 184 | 189 |
| 185 } // namespace plotting | 190 } // namespace plotting |
| 186 } // namespace webrtc | 191 } // namespace webrtc |
| 187 | 192 |
| 188 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ | 193 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ |
| OLD | NEW |