terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #include <iostream> |
| 12 | |
skvlad | cc91d28 | 2016-10-03 18:31:22 -0700 | [diff] [blame] | 13 | #include "webrtc/logging/rtc_event_log/rtc_event_log_parser.h" |
Edward Lemur | c20978e | 2017-07-06 19:44:34 +0200 | [diff] [blame] | 14 | #include "webrtc/rtc_base/flags.h" |
kjellander | d2b63cf | 2017-06-30 03:04:59 -0700 | [diff] [blame] | 15 | #include "webrtc/rtc_tools/event_log_visualizer/analyzer.h" |
| 16 | #include "webrtc/rtc_tools/event_log_visualizer/plot_base.h" |
| 17 | #include "webrtc/rtc_tools/event_log_visualizer/plot_python.h" |
stefan | 985d280 | 2016-11-15 06:54:09 -0800 | [diff] [blame] | 18 | #include "webrtc/test/field_trial.h" |
henrik.lundin | 3c938fc | 2017-06-14 06:09:58 -0700 | [diff] [blame] | 19 | #include "webrtc/test/testsupport/fileutils.h" |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 20 | |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 21 | DEFINE_string(plot_profile, |
| 22 | "default", |
| 23 | "A profile that selects a certain subset of the plots. Currently " |
| 24 | "defined profiles are \"all\", \"none\" and \"default\""); |
| 25 | |
| 26 | DEFINE_bool(plot_incoming_packet_sizes, |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 27 | false, |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 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."); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 38 | DEFINE_bool(plot_audio_playout, |
| 39 | false, |
| 40 | "Plot bar graph showing the time between each audio playout."); |
ivoc | aac9d6f | 2016-09-22 07:01:47 -0700 | [diff] [blame] | 41 | DEFINE_bool(plot_audio_level, |
| 42 | false, |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 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."); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 48 | DEFINE_bool( |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 49 | plot_incoming_delay_delta, |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 50 | false, |
| 51 | "Plot the difference in 1-way path delay between consecutive packets."); |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 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, |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 75 | false, |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 76 | "Run the send-side bandwidth estimator with the outgoing rtp and " |
| 77 | "incoming rtcp and plot the resulting estimate."); |
stefan | c3de033 | 2016-08-02 07:22:17 -0700 | [diff] [blame] | 78 | DEFINE_bool(plot_network_delay_feedback, |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 79 | true, |
stefan | c3de033 | 2016-08-02 07:22:17 -0700 | [diff] [blame] | 80 | "Compute network delay based on sent packets and the received " |
| 81 | "transport feedback."); |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 82 | DEFINE_bool(plot_fraction_loss_feedback, |
| 83 | true, |
terelius | f736d23 | 2016-08-04 10:00:11 -0700 | [diff] [blame] | 84 | "Plot packet loss in percent for outgoing packets (as perceived by " |
| 85 | "the send-side bandwidth estimator)."); |
stefan | e372d3c | 2017-02-02 08:04:18 -0800 | [diff] [blame] | 86 | DEFINE_bool(plot_timestamps, |
| 87 | false, |
| 88 | "Plot the rtp timestamps of all rtp and rtcp packets over time."); |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 89 | DEFINE_bool(plot_audio_encoder_bitrate_bps, |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 90 | false, |
| 91 | "Plot the audio encoder target bitrate."); |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 92 | DEFINE_bool(plot_audio_encoder_frame_length_ms, |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 93 | false, |
| 94 | "Plot the audio encoder frame length."); |
| 95 | DEFINE_bool( |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 96 | plot_audio_encoder_packet_loss, |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 97 | false, |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 98 | "Plot the uplink packet loss fraction which is sent to the audio encoder."); |
| 99 | DEFINE_bool(plot_audio_encoder_fec, false, "Plot the audio encoder FEC."); |
| 100 | DEFINE_bool(plot_audio_encoder_dtx, false, "Plot the audio encoder DTX."); |
| 101 | DEFINE_bool(plot_audio_encoder_num_channels, |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 102 | false, |
| 103 | "Plot the audio encoder number of channels."); |
henrik.lundin | 3c938fc | 2017-06-14 06:09:58 -0700 | [diff] [blame] | 104 | DEFINE_bool(plot_audio_jitter_buffer, |
| 105 | false, |
| 106 | "Plot the audio jitter buffer delay profile."); |
stefan | 985d280 | 2016-11-15 06:54:09 -0800 | [diff] [blame] | 107 | DEFINE_string( |
| 108 | force_fieldtrials, |
| 109 | "", |
| 110 | "Field trials control experimental feature code which can be forced. " |
| 111 | "E.g. running with --force_fieldtrials=WebRTC-FooFeature/Enabled/" |
| 112 | " will assign the group Enabled to field trial WebRTC-FooFeature. Multiple " |
| 113 | "trials are separated by \"/\""); |
kjellander | 4fa5be4 | 2017-05-16 00:01:23 -0700 | [diff] [blame] | 114 | DEFINE_bool(help, false, "prints this message"); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 115 | |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 116 | DEFINE_bool(show_detector_state, |
| 117 | false, |
| 118 | "Show the state of the delay based BWE detector on the total " |
| 119 | "bitrate graph"); |
| 120 | |
| 121 | void SetAllPlotFlags(bool setting); |
| 122 | |
philipel | 23c7f25 | 2017-07-14 06:30:03 -0700 | [diff] [blame] | 123 | |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 124 | int main(int argc, char* argv[]) { |
| 125 | std::string program_name = argv[0]; |
| 126 | std::string usage = |
| 127 | "A tool for visualizing WebRTC event logs.\n" |
| 128 | "Example usage:\n" + |
| 129 | program_name + " <logfile> | python\n" + "Run " + program_name + |
| 130 | " --help for a list of command line options\n"; |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 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. |
kjellander | 4fa5be4 | 2017-05-16 00:01:23 -0700 | [diff] [blame] | 147 | rtc::FlagList::SetFlagsFromCommandLine(&argc, argv, true); |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 148 | |
terelius | c4a5c14 | 2017-07-20 08:05:09 -0700 | [diff] [blame] | 149 | if (argc != 2 || FLAG_help) { |
kjellander | 4fa5be4 | 2017-05-16 00:01:23 -0700 | [diff] [blame] | 150 | // Print usage information. |
| 151 | std::cout << usage; |
terelius | c4a5c14 | 2017-07-20 08:05:09 -0700 | [diff] [blame] | 152 | if (FLAG_help) |
| 153 | rtc::FlagList::Print(nullptr, false); |
kjellander | 4fa5be4 | 2017-05-16 00:01:23 -0700 | [diff] [blame] | 154 | return 0; |
| 155 | } |
| 156 | |
henrik.lundin | 3c938fc | 2017-06-14 06:09:58 -0700 | [diff] [blame] | 157 | webrtc::test::SetExecutablePath(argv[0]); |
kjellander | 4fa5be4 | 2017-05-16 00:01:23 -0700 | [diff] [blame] | 158 | webrtc::test::InitFieldTrialsFromString(FLAG_force_fieldtrials); |
stefan | 985d280 | 2016-11-15 06:54:09 -0800 | [diff] [blame] | 159 | |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 160 | std::string filename = argv[1]; |
| 161 | |
| 162 | webrtc::ParsedRtcEventLog parsed_log; |
| 163 | |
| 164 | if (!parsed_log.ParseFile(filename)) { |
| 165 | std::cerr << "Could not parse the entire log file." << std::endl; |
| 166 | std::cerr << "Proceeding to analyze the first " |
| 167 | << parsed_log.GetNumberOfEvents() << " events in the file." |
| 168 | << std::endl; |
| 169 | } |
| 170 | |
| 171 | webrtc::plotting::EventLogAnalyzer analyzer(parsed_log); |
| 172 | std::unique_ptr<webrtc::plotting::PlotCollection> collection( |
| 173 | new webrtc::plotting::PythonPlotCollection()); |
| 174 | |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 175 | if (FLAG_plot_incoming_packet_sizes) { |
| 176 | analyzer.CreatePacketGraph(webrtc::PacketDirection::kIncomingPacket, |
| 177 | collection->AppendNewPlot()); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 178 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 179 | if (FLAG_plot_outgoing_packet_sizes) { |
| 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) { |
terelius | dc35dcd | 2016-08-01 12:03:27 -0700 | [diff] [blame] | 192 | analyzer.CreatePlayoutGraph(collection->AppendNewPlot()); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 193 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 194 | if (FLAG_plot_audio_level) { |
ivoc | aac9d6f | 2016-09-22 07:01:47 -0700 | [diff] [blame] | 195 | analyzer.CreateAudioLevelGraph(collection->AppendNewPlot()); |
| 196 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 197 | if (FLAG_plot_incoming_sequence_number_delta) { |
| 198 | analyzer.CreateSequenceNumberGraph(collection->AppendNewPlot()); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 199 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 200 | if (FLAG_plot_incoming_delay_delta) { |
| 201 | analyzer.CreateIncomingDelayDeltaGraph(collection->AppendNewPlot()); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 202 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 203 | if (FLAG_plot_incoming_delay) { |
| 204 | analyzer.CreateIncomingDelayGraph(collection->AppendNewPlot()); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 205 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 206 | if (FLAG_plot_incoming_loss_rate) { |
Stefan Holmer | 99f8e08 | 2016-09-09 13:37:50 +0200 | [diff] [blame] | 207 | analyzer.CreateIncomingPacketLossGraph(collection->AppendNewPlot()); |
terelius | f736d23 | 2016-08-04 10:00:11 -0700 | [diff] [blame] | 208 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 209 | if (FLAG_plot_incoming_bitrate) { |
| 210 | analyzer.CreateTotalBitrateGraph(webrtc::PacketDirection::kIncomingPacket, |
| 211 | collection->AppendNewPlot(), |
| 212 | FLAG_show_detector_state); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 213 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 214 | if (FLAG_plot_outgoing_bitrate) { |
| 215 | analyzer.CreateTotalBitrateGraph(webrtc::PacketDirection::kOutgoingPacket, |
| 216 | collection->AppendNewPlot(), |
| 217 | FLAG_show_detector_state); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 218 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 219 | if (FLAG_plot_incoming_stream_bitrate) { |
| 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) { |
terelius | e34c19c | 2016-08-15 08:47:14 -0700 | [diff] [blame] | 228 | analyzer.CreateBweSimulationGraph(collection->AppendNewPlot()); |
Stefan Holmer | 1318103 | 2016-07-29 14:48:54 +0200 | [diff] [blame] | 229 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 230 | if (FLAG_plot_network_delay_feedback) { |
terelius | e34c19c | 2016-08-15 08:47:14 -0700 | [diff] [blame] | 231 | analyzer.CreateNetworkDelayFeedbackGraph(collection->AppendNewPlot()); |
stefan | c3de033 | 2016-08-02 07:22:17 -0700 | [diff] [blame] | 232 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 233 | if (FLAG_plot_fraction_loss_feedback) { |
| 234 | analyzer.CreateFractionLossGraph(collection->AppendNewPlot()); |
| 235 | } |
| 236 | if (FLAG_plot_timestamps) { |
stefan | e372d3c | 2017-02-02 08:04:18 -0800 | [diff] [blame] | 237 | analyzer.CreateTimestampGraph(collection->AppendNewPlot()); |
| 238 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 239 | if (FLAG_plot_audio_encoder_bitrate_bps) { |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 240 | analyzer.CreateAudioEncoderTargetBitrateGraph(collection->AppendNewPlot()); |
| 241 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 242 | if (FLAG_plot_audio_encoder_frame_length_ms) { |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 243 | analyzer.CreateAudioEncoderFrameLengthGraph(collection->AppendNewPlot()); |
| 244 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 245 | if (FLAG_plot_audio_encoder_packet_loss) { |
| 246 | analyzer.CreateAudioEncoderPacketLossGraph(collection->AppendNewPlot()); |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 247 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 248 | if (FLAG_plot_audio_encoder_fec) { |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 249 | analyzer.CreateAudioEncoderEnableFecGraph(collection->AppendNewPlot()); |
| 250 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 251 | if (FLAG_plot_audio_encoder_dtx) { |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 252 | analyzer.CreateAudioEncoderEnableDtxGraph(collection->AppendNewPlot()); |
| 253 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 254 | if (FLAG_plot_audio_encoder_num_channels) { |
michaelt | 6e5b219 | 2017-02-22 07:33:27 -0800 | [diff] [blame] | 255 | analyzer.CreateAudioEncoderNumChannelsGraph(collection->AppendNewPlot()); |
| 256 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 257 | if (FLAG_plot_audio_jitter_buffer) { |
henrik.lundin | 3c938fc | 2017-06-14 06:09:58 -0700 | [diff] [blame] | 258 | analyzer.CreateAudioJitterBufferGraph( |
| 259 | webrtc::test::ResourcePath( |
| 260 | "audio_processing/conversational_speech/EN_script2_F_sp2_B1", |
| 261 | "wav"), |
| 262 | 48000, collection->AppendNewPlot()); |
| 263 | } |
| 264 | |
terelius | dc35dcd | 2016-08-01 12:03:27 -0700 | [diff] [blame] | 265 | collection->Draw(); |
terelius | 54ce680 | 2016-07-13 06:44:41 -0700 | [diff] [blame] | 266 | |
| 267 | return 0; |
| 268 | } |
terelius | 2ee076d | 2017-08-15 02:04:02 -0700 | [diff] [blame^] | 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 | } |