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

Side by Side Diff: webrtc/rtc_tools/event_log_visualizer/main.cc

Issue 2983983002: Improved UI for event_log_analyzer tool (Closed)
Patch Set: Rebase Created 3 years, 4 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
« no previous file with comments | « webrtc/rtc_tools/event_log_visualizer/analyzer.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 #include <iostream> 11 #include <iostream>
12 12
13 #include "webrtc/logging/rtc_event_log/rtc_event_log_parser.h" 13 #include "webrtc/logging/rtc_event_log/rtc_event_log_parser.h"
14 #include "webrtc/rtc_base/flags.h" 14 #include "webrtc/rtc_base/flags.h"
15 #include "webrtc/rtc_tools/event_log_visualizer/analyzer.h" 15 #include "webrtc/rtc_tools/event_log_visualizer/analyzer.h"
16 #include "webrtc/rtc_tools/event_log_visualizer/plot_base.h" 16 #include "webrtc/rtc_tools/event_log_visualizer/plot_base.h"
17 #include "webrtc/rtc_tools/event_log_visualizer/plot_python.h" 17 #include "webrtc/rtc_tools/event_log_visualizer/plot_python.h"
18 #include "webrtc/test/field_trial.h" 18 #include "webrtc/test/field_trial.h"
19 #include "webrtc/test/testsupport/fileutils.h" 19 #include "webrtc/test/testsupport/fileutils.h"
20 20
21 DEFINE_bool(incoming, true, "Plot statistics for incoming packets."); 21 DEFINE_string(plot_profile,
22 DEFINE_bool(outgoing, true, "Plot statistics for outgoing packets."); 22 "default",
23 DEFINE_bool(plot_all, true, "Plot all different data types."); 23 "A profile that selects a certain subset of the plots. Currently "
24 DEFINE_bool(plot_packets, 24 "defined profiles are \"all\", \"none\" and \"default\"");
25
26 DEFINE_bool(plot_incoming_packet_sizes,
25 false, 27 false,
26 "Plot bar graph showing the size of each packet."); 28 "Plot bar graph showing the size of each incoming packet.");
29 DEFINE_bool(plot_outgoing_packet_sizes,
30 false,
31 "Plot bar graph showing the size of each outgoing packet.");
32 DEFINE_bool(plot_incoming_packet_count,
33 false,
34 "Plot the accumulated number of packets for each incoming stream.");
35 DEFINE_bool(plot_outgoing_packet_count,
36 false,
37 "Plot the accumulated number of packets for each outgoing stream.");
27 DEFINE_bool(plot_audio_playout, 38 DEFINE_bool(plot_audio_playout,
28 false, 39 false,
29 "Plot bar graph showing the time between each audio playout."); 40 "Plot bar graph showing the time between each audio playout.");
30 DEFINE_bool(plot_audio_level, 41 DEFINE_bool(plot_audio_level,
31 false, 42 false,
32 "Plot line graph showing the audio level."); 43 "Plot line graph showing the audio level of incoming audio.");
44 DEFINE_bool(plot_incoming_sequence_number_delta,
45 false,
46 "Plot the sequence number difference between consecutive incoming "
47 "packets.");
33 DEFINE_bool( 48 DEFINE_bool(
34 plot_sequence_number, 49 plot_incoming_delay_delta,
35 false,
36 "Plot the difference in sequence number between consecutive packets.");
37 DEFINE_bool(
38 plot_delay_change,
39 false, 50 false,
40 "Plot the difference in 1-way path delay between consecutive packets."); 51 "Plot the difference in 1-way path delay between consecutive packets.");
41 DEFINE_bool(plot_accumulated_delay_change, 52 DEFINE_bool(plot_incoming_delay,
53 true,
54 "Plot the 1-way path delay for incoming packets, normalized so "
55 "that the first packet has delay 0.");
56 DEFINE_bool(plot_incoming_loss_rate,
57 true,
58 "Compute the loss rate for incoming packets using a method that's "
59 "similar to the one used for RTCP SR and RR fraction lost. Note "
60 "that the loss rate can be negative if packets are duplicated or "
61 "reordered.");
62 DEFINE_bool(plot_incoming_bitrate,
63 true,
64 "Plot the total bitrate used by all incoming streams.");
65 DEFINE_bool(plot_outgoing_bitrate,
66 true,
67 "Plot the total bitrate used by all outgoing streams.");
68 DEFINE_bool(plot_incoming_stream_bitrate,
69 true,
70 "Plot the bitrate used by each incoming stream.");
71 DEFINE_bool(plot_outgoing_stream_bitrate,
72 true,
73 "Plot the bitrate used by each outgoing stream.");
74 DEFINE_bool(plot_simulated_sendside_bwe,
42 false, 75 false,
43 "Plot the accumulated 1-way path delay change, or the path delay " 76 "Run the send-side bandwidth estimator with the outgoing rtp and "
44 "change compared to the first packet."); 77 "incoming rtcp and plot the resulting estimate.");
45 DEFINE_bool(plot_total_bitrate,
46 false,
47 "Plot the total bitrate used by all streams.");
48 DEFINE_bool(plot_stream_bitrate,
49 false,
50 "Plot the bitrate used by each stream.");
51 DEFINE_bool(plot_bwe,
52 false,
53 "Run the bandwidth estimator with the logged rtp and rtcp and plot "
54 "the output.");
55 DEFINE_bool(plot_network_delay_feedback, 78 DEFINE_bool(plot_network_delay_feedback,
56 false, 79 true,
57 "Compute network delay based on sent packets and the received " 80 "Compute network delay based on sent packets and the received "
58 "transport feedback."); 81 "transport feedback.");
59 DEFINE_bool(plot_fraction_loss, 82 DEFINE_bool(plot_fraction_loss_feedback,
60 false, 83 true,
61 "Plot packet loss in percent for outgoing packets (as perceived by " 84 "Plot packet loss in percent for outgoing packets (as perceived by "
62 "the send-side bandwidth estimator)."); 85 "the send-side bandwidth estimator).");
63 DEFINE_bool(plot_timestamps, 86 DEFINE_bool(plot_timestamps,
64 false, 87 false,
65 "Plot the rtp timestamps of all rtp and rtcp packets over time."); 88 "Plot the rtp timestamps of all rtp and rtcp packets over time.");
66 DEFINE_bool(audio_encoder_bitrate_bps, 89 DEFINE_bool(plot_audio_encoder_bitrate_bps,
67 false, 90 false,
68 "Plot the audio encoder target bitrate."); 91 "Plot the audio encoder target bitrate.");
69 DEFINE_bool(audio_encoder_frame_length_ms, 92 DEFINE_bool(plot_audio_encoder_frame_length_ms,
70 false, 93 false,
71 "Plot the audio encoder frame length."); 94 "Plot the audio encoder frame length.");
72 DEFINE_bool( 95 DEFINE_bool(
73 audio_encoder_uplink_packet_loss_fraction, 96 plot_audio_encoder_packet_loss,
74 false, 97 false,
75 "Plot the uplink packet loss fraction which is send to the audio encoder."); 98 "Plot the uplink packet loss fraction which is sent to the audio encoder.");
76 DEFINE_bool(audio_encoder_fec, false, "Plot the audio encoder FEC."); 99 DEFINE_bool(plot_audio_encoder_fec, false, "Plot the audio encoder FEC.");
77 DEFINE_bool(audio_encoder_dtx, false, "Plot the audio encoder DTX."); 100 DEFINE_bool(plot_audio_encoder_dtx, false, "Plot the audio encoder DTX.");
78 DEFINE_bool(audio_encoder_num_channels, 101 DEFINE_bool(plot_audio_encoder_num_channels,
79 false, 102 false,
80 "Plot the audio encoder number of channels."); 103 "Plot the audio encoder number of channels.");
81 DEFINE_bool(plot_audio_jitter_buffer, 104 DEFINE_bool(plot_audio_jitter_buffer,
82 false, 105 false,
83 "Plot the audio jitter buffer delay profile."); 106 "Plot the audio jitter buffer delay profile.");
84 DEFINE_string( 107 DEFINE_string(
85 force_fieldtrials, 108 force_fieldtrials,
86 "", 109 "",
87 "Field trials control experimental feature code which can be forced. " 110 "Field trials control experimental feature code which can be forced. "
88 "E.g. running with --force_fieldtrials=WebRTC-FooFeature/Enabled/" 111 "E.g. running with --force_fieldtrials=WebRTC-FooFeature/Enabled/"
89 " will assign the group Enabled to field trial WebRTC-FooFeature. Multiple " 112 " will assign the group Enabled to field trial WebRTC-FooFeature. Multiple "
90 "trials are separated by \"/\""); 113 "trials are separated by \"/\"");
91 DEFINE_bool(help, false, "prints this message"); 114 DEFINE_bool(help, false, "prints this message");
92 115
93 DEFINE_bool( 116 DEFINE_bool(show_detector_state,
94 show_detector_state, 117 false,
95 false, 118 "Show the state of the delay based BWE detector on the total "
96 "Mark the delay based bwe detector state on the total bitrate graph"); 119 "bitrate graph");
120
121 void SetAllPlotFlags(bool setting);
122
97 123
98 int main(int argc, char* argv[]) { 124 int main(int argc, char* argv[]) {
99 std::string program_name = argv[0]; 125 std::string program_name = argv[0];
100 std::string usage = 126 std::string usage =
101 "A tool for visualizing WebRTC event logs.\n" 127 "A tool for visualizing WebRTC event logs.\n"
102 "Example usage:\n" + 128 "Example usage:\n" +
103 program_name + " <logfile> | python\n" + "Run " + program_name + 129 program_name + " <logfile> | python\n" + "Run " + program_name +
104 " --help for a list of command line options\n"; 130 " --help for a list of command line options\n";
131
132 // Parse command line flags without removing them. We're only interested in
133 // the |plot_profile| flag.
134 rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, false);
135 if (strcmp(FLAG_plot_profile, "all") == 0) {
136 SetAllPlotFlags(true);
137 } else if (strcmp(FLAG_plot_profile, "none") == 0) {
138 SetAllPlotFlags(false);
139 } else if (strcmp(FLAG_plot_profile, "default") == 0) {
140 // Do nothing.
141 } else {
142 rtc::Flag* plot_profile_flag = rtc::FlagList::Lookup("plot_profile");
143 RTC_CHECK(plot_profile_flag);
144 plot_profile_flag->Print(false);
145 }
146 // Parse the remaining flags. They are applied relative to the chosen profile.
105 rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true); 147 rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true);
148
106 if (argc != 2 || FLAG_help) { 149 if (argc != 2 || FLAG_help) {
107 // Print usage information. 150 // Print usage information.
108 std::cout << usage; 151 std::cout << usage;
109 if (FLAG_help) 152 if (FLAG_help)
110 rtc::FlagList::Print(nullptr, false); 153 rtc::FlagList::Print(nullptr, false);
111 return 0; 154 return 0;
112 } 155 }
113 156
114 webrtc::test::SetExecutablePath(argv[0]); 157 webrtc::test::SetExecutablePath(argv[0]);
115 webrtc::test::InitFieldTrialsFromString(FLAG_force_fieldtrials); 158 webrtc::test::InitFieldTrialsFromString(FLAG_force_fieldtrials);
116 159
117 std::string filename = argv[1]; 160 std::string filename = argv[1];
118 161
119 webrtc::ParsedRtcEventLog parsed_log; 162 webrtc::ParsedRtcEventLog parsed_log;
120 163
121 if (!parsed_log.ParseFile(filename)) { 164 if (!parsed_log.ParseFile(filename)) {
122 std::cerr << "Could not parse the entire log file." << std::endl; 165 std::cerr << "Could not parse the entire log file." << std::endl;
123 std::cerr << "Proceeding to analyze the first " 166 std::cerr << "Proceeding to analyze the first "
124 << parsed_log.GetNumberOfEvents() << " events in the file." 167 << parsed_log.GetNumberOfEvents() << " events in the file."
125 << std::endl; 168 << std::endl;
126 } 169 }
127 170
128 webrtc::plotting::EventLogAnalyzer analyzer(parsed_log); 171 webrtc::plotting::EventLogAnalyzer analyzer(parsed_log);
129 std::unique_ptr<webrtc::plotting::PlotCollection> collection( 172 std::unique_ptr<webrtc::plotting::PlotCollection> collection(
130 new webrtc::plotting::PythonPlotCollection()); 173 new webrtc::plotting::PythonPlotCollection());
131 174
132 if (FLAG_plot_all || FLAG_plot_packets) { 175 if (FLAG_plot_incoming_packet_sizes) {
133 if (FLAG_incoming) { 176 analyzer.CreatePacketGraph(webrtc::PacketDirection::kIncomingPacket,
134 analyzer.CreatePacketGraph(webrtc::PacketDirection::kIncomingPacket, 177 collection->AppendNewPlot());
135 collection->AppendNewPlot());
136 analyzer.CreateAccumulatedPacketsGraph(
137 webrtc::PacketDirection::kIncomingPacket,
138 collection->AppendNewPlot());
139 }
140 if (FLAG_outgoing) {
141 analyzer.CreatePacketGraph(webrtc::PacketDirection::kOutgoingPacket,
142 collection->AppendNewPlot());
143 analyzer.CreateAccumulatedPacketsGraph(
144 webrtc::PacketDirection::kOutgoingPacket,
145 collection->AppendNewPlot());
146 }
147 } 178 }
148 179 if (FLAG_plot_outgoing_packet_sizes) {
149 if (FLAG_plot_all || FLAG_plot_audio_playout) { 180 analyzer.CreatePacketGraph(webrtc::PacketDirection::kOutgoingPacket,
181 collection->AppendNewPlot());
182 }
183 if (FLAG_plot_incoming_packet_count) {
184 analyzer.CreateAccumulatedPacketsGraph(
185 webrtc::PacketDirection::kIncomingPacket, collection->AppendNewPlot());
186 }
187 if (FLAG_plot_outgoing_packet_count) {
188 analyzer.CreateAccumulatedPacketsGraph(
189 webrtc::PacketDirection::kOutgoingPacket, collection->AppendNewPlot());
190 }
191 if (FLAG_plot_audio_playout) {
150 analyzer.CreatePlayoutGraph(collection->AppendNewPlot()); 192 analyzer.CreatePlayoutGraph(collection->AppendNewPlot());
151 } 193 }
152 194 if (FLAG_plot_audio_level) {
153 if (FLAG_plot_all || FLAG_plot_audio_level) {
154 analyzer.CreateAudioLevelGraph(collection->AppendNewPlot()); 195 analyzer.CreateAudioLevelGraph(collection->AppendNewPlot());
155 } 196 }
156 197 if (FLAG_plot_incoming_sequence_number_delta) {
157 if (FLAG_plot_all || FLAG_plot_sequence_number) { 198 analyzer.CreateSequenceNumberGraph(collection->AppendNewPlot());
158 if (FLAG_incoming) {
159 analyzer.CreateSequenceNumberGraph(collection->AppendNewPlot());
160 }
161 } 199 }
162 200 if (FLAG_plot_incoming_delay_delta) {
163 if (FLAG_plot_all || FLAG_plot_delay_change) { 201 analyzer.CreateIncomingDelayDeltaGraph(collection->AppendNewPlot());
164 if (FLAG_incoming) {
165 analyzer.CreateDelayChangeGraph(collection->AppendNewPlot());
166 }
167 } 202 }
168 203 if (FLAG_plot_incoming_delay) {
169 if (FLAG_plot_all || FLAG_plot_accumulated_delay_change) { 204 analyzer.CreateIncomingDelayGraph(collection->AppendNewPlot());
170 if (FLAG_incoming) {
171 analyzer.CreateAccumulatedDelayChangeGraph(collection->AppendNewPlot());
172 }
173 } 205 }
174 206 if (FLAG_plot_incoming_loss_rate) {
175 if (FLAG_plot_all || FLAG_plot_fraction_loss) {
176 analyzer.CreateFractionLossGraph(collection->AppendNewPlot());
177 analyzer.CreateIncomingPacketLossGraph(collection->AppendNewPlot()); 207 analyzer.CreateIncomingPacketLossGraph(collection->AppendNewPlot());
178 } 208 }
179 209 if (FLAG_plot_incoming_bitrate) {
180 if (FLAG_plot_all || FLAG_plot_total_bitrate) { 210 analyzer.CreateTotalBitrateGraph(webrtc::PacketDirection::kIncomingPacket,
181 if (FLAG_incoming) { 211 collection->AppendNewPlot(),
182 analyzer.CreateTotalBitrateGraph(webrtc::PacketDirection::kIncomingPacket, 212 FLAG_show_detector_state);
183 collection->AppendNewPlot(),
184 FLAG_show_detector_state);
185 }
186 if (FLAG_outgoing) {
187 analyzer.CreateTotalBitrateGraph(webrtc::PacketDirection::kOutgoingPacket,
188 collection->AppendNewPlot(),
189 FLAG_show_detector_state);
190 }
191 } 213 }
192 214 if (FLAG_plot_outgoing_bitrate) {
193 if (FLAG_plot_all || FLAG_plot_stream_bitrate) { 215 analyzer.CreateTotalBitrateGraph(webrtc::PacketDirection::kOutgoingPacket,
194 if (FLAG_incoming) { 216 collection->AppendNewPlot(),
195 analyzer.CreateStreamBitrateGraph( 217 FLAG_show_detector_state);
196 webrtc::PacketDirection::kIncomingPacket,
197 collection->AppendNewPlot());
198 }
199 if (FLAG_outgoing) {
200 analyzer.CreateStreamBitrateGraph(
201 webrtc::PacketDirection::kOutgoingPacket,
202 collection->AppendNewPlot());
203 }
204 } 218 }
205 219 if (FLAG_plot_incoming_stream_bitrate) {
206 if (FLAG_plot_all || FLAG_plot_bwe) { 220 analyzer.CreateStreamBitrateGraph(webrtc::PacketDirection::kIncomingPacket,
221 collection->AppendNewPlot());
222 }
223 if (FLAG_plot_outgoing_stream_bitrate) {
224 analyzer.CreateStreamBitrateGraph(webrtc::PacketDirection::kOutgoingPacket,
225 collection->AppendNewPlot());
226 }
227 if (FLAG_plot_simulated_sendside_bwe) {
207 analyzer.CreateBweSimulationGraph(collection->AppendNewPlot()); 228 analyzer.CreateBweSimulationGraph(collection->AppendNewPlot());
208 } 229 }
209 230 if (FLAG_plot_network_delay_feedback) {
210 if (FLAG_plot_all || FLAG_plot_network_delay_feedback) {
211 analyzer.CreateNetworkDelayFeedbackGraph(collection->AppendNewPlot()); 231 analyzer.CreateNetworkDelayFeedbackGraph(collection->AppendNewPlot());
212 } 232 }
213 233 if (FLAG_plot_fraction_loss_feedback) {
214 if (FLAG_plot_all || FLAG_plot_timestamps) { 234 analyzer.CreateFractionLossGraph(collection->AppendNewPlot());
235 }
236 if (FLAG_plot_timestamps) {
215 analyzer.CreateTimestampGraph(collection->AppendNewPlot()); 237 analyzer.CreateTimestampGraph(collection->AppendNewPlot());
216 } 238 }
217 239 if (FLAG_plot_audio_encoder_bitrate_bps) {
218 if (FLAG_plot_all || FLAG_audio_encoder_bitrate_bps) {
219 analyzer.CreateAudioEncoderTargetBitrateGraph(collection->AppendNewPlot()); 240 analyzer.CreateAudioEncoderTargetBitrateGraph(collection->AppendNewPlot());
220 } 241 }
221 242 if (FLAG_plot_audio_encoder_frame_length_ms) {
222 if (FLAG_plot_all || FLAG_audio_encoder_frame_length_ms) {
223 analyzer.CreateAudioEncoderFrameLengthGraph(collection->AppendNewPlot()); 243 analyzer.CreateAudioEncoderFrameLengthGraph(collection->AppendNewPlot());
224 } 244 }
225 245 if (FLAG_plot_audio_encoder_packet_loss) {
226 if (FLAG_plot_all || FLAG_audio_encoder_uplink_packet_loss_fraction) { 246 analyzer.CreateAudioEncoderPacketLossGraph(collection->AppendNewPlot());
227 analyzer.CreateAudioEncoderUplinkPacketLossFractionGraph(
228 collection->AppendNewPlot());
229 } 247 }
230 248 if (FLAG_plot_audio_encoder_fec) {
231 if (FLAG_plot_all || FLAG_audio_encoder_fec) {
232 analyzer.CreateAudioEncoderEnableFecGraph(collection->AppendNewPlot()); 249 analyzer.CreateAudioEncoderEnableFecGraph(collection->AppendNewPlot());
233 } 250 }
234 251 if (FLAG_plot_audio_encoder_dtx) {
235 if (FLAG_plot_all || FLAG_audio_encoder_dtx) {
236 analyzer.CreateAudioEncoderEnableDtxGraph(collection->AppendNewPlot()); 252 analyzer.CreateAudioEncoderEnableDtxGraph(collection->AppendNewPlot());
237 } 253 }
238 254 if (FLAG_plot_audio_encoder_num_channels) {
239 if (FLAG_plot_all || FLAG_audio_encoder_num_channels) {
240 analyzer.CreateAudioEncoderNumChannelsGraph(collection->AppendNewPlot()); 255 analyzer.CreateAudioEncoderNumChannelsGraph(collection->AppendNewPlot());
241 } 256 }
242 257 if (FLAG_plot_audio_jitter_buffer) {
243 if (FLAG_plot_all || FLAG_plot_audio_jitter_buffer) {
244 analyzer.CreateAudioJitterBufferGraph( 258 analyzer.CreateAudioJitterBufferGraph(
245 webrtc::test::ResourcePath( 259 webrtc::test::ResourcePath(
246 "audio_processing/conversational_speech/EN_script2_F_sp2_B1", 260 "audio_processing/conversational_speech/EN_script2_F_sp2_B1",
247 "wav"), 261 "wav"),
248 48000, collection->AppendNewPlot()); 262 48000, collection->AppendNewPlot());
249 } 263 }
250 264
251 collection->Draw(); 265 collection->Draw();
252 266
253 return 0; 267 return 0;
254 } 268 }
269
270
271 void SetAllPlotFlags(bool setting) {
272 FLAG_plot_incoming_packet_sizes = setting;
273 FLAG_plot_outgoing_packet_sizes = setting;
274 FLAG_plot_incoming_packet_count = setting;
275 FLAG_plot_outgoing_packet_count = setting;
276 FLAG_plot_audio_playout = setting;
277 FLAG_plot_audio_level = setting;
278 FLAG_plot_incoming_sequence_number_delta = setting;
279 FLAG_plot_incoming_delay_delta = setting;
280 FLAG_plot_incoming_delay = setting;
281 FLAG_plot_incoming_loss_rate = setting;
282 FLAG_plot_incoming_bitrate = setting;
283 FLAG_plot_outgoing_bitrate = setting;
284 FLAG_plot_incoming_stream_bitrate = setting;
285 FLAG_plot_outgoing_stream_bitrate = setting;
286 FLAG_plot_simulated_sendside_bwe = setting;
287 FLAG_plot_network_delay_feedback = setting;
288 FLAG_plot_fraction_loss_feedback = setting;
289 FLAG_plot_timestamps = setting;
290 FLAG_plot_audio_encoder_bitrate_bps = setting;
291 FLAG_plot_audio_encoder_frame_length_ms = setting;
292 FLAG_plot_audio_encoder_packet_loss = setting;
293 FLAG_plot_audio_encoder_fec = setting;
294 FLAG_plot_audio_encoder_dtx = setting;
295 FLAG_plot_audio_encoder_num_channels = setting;
296 FLAG_plot_audio_jitter_buffer = setting;
297 }
OLDNEW
« no previous file with comments | « webrtc/rtc_tools/event_log_visualizer/analyzer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698