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

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

Issue 2707383006: GetTransportFeedbackVector() includes unreceived packets, sorted by seq-num (Closed)
Patch Set: Rebased and event-log-visualizer modified. Created 3 years, 9 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
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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 bool IsAudioSsrc(StreamId stream_id) const; 139 bool IsAudioSsrc(StreamId stream_id) const;
140 140
141 std::string GetStreamName(StreamId) const; 141 std::string GetStreamName(StreamId) const;
142 142
143 void FillAudioEncoderTimeSeries( 143 void FillAudioEncoderTimeSeries(
144 Plot* plot, 144 Plot* plot,
145 rtc::FunctionView<rtc::Optional<float>( 145 rtc::FunctionView<rtc::Optional<float>(
146 const AudioNetworkAdaptationEvent& ana_event)> get_y) const; 146 const AudioNetworkAdaptationEvent& ana_event)> get_y) const;
147 147
148 void SortPacketFeedbackVector(std::vector<PacketFeedback>* vector) const;
149
148 const ParsedRtcEventLog& parsed_log_; 150 const ParsedRtcEventLog& parsed_log_;
149 151
150 // A list of SSRCs we are interested in analysing. 152 // A list of SSRCs we are interested in analysing.
151 // If left empty, all SSRCs will be considered relevant. 153 // If left empty, all SSRCs will be considered relevant.
152 std::vector<uint32_t> desired_ssrc_; 154 std::vector<uint32_t> desired_ssrc_;
153 155
154 // Tracks what each stream is configured for. Note that a single SSRC can be 156 // Tracks what each stream is configured for. Note that a single SSRC can be
155 // in several sets. For example, the SSRC used for sending video over RTX 157 // in several sets. For example, the SSRC used for sending video over RTX
156 // will appear in both video_ssrcs_ and rtx_ssrcs_. In the unlikely case that 158 // will appear in both video_ssrcs_ and rtx_ssrcs_. In the unlikely case that
157 // an SSRC is reconfigured to a different media type mid-call, it will also 159 // an SSRC is reconfigured to a different media type mid-call, it will also
(...skipping 26 matching lines...) Expand all
184 uint64_t end_time_; 186 uint64_t end_time_;
185 187
186 // Duration (in seconds) of log file. 188 // Duration (in seconds) of log file.
187 float call_duration_s_; 189 float call_duration_s_;
188 }; 190 };
189 191
190 } // namespace plotting 192 } // namespace plotting
191 } // namespace webrtc 193 } // namespace webrtc
192 194
193 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ 195 #endif // WEBRTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698