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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/packet_receiver.cc

Issue 2456373002: Update BWE_TEST_LOGGING_PLOT output format, and fix plot_dynamics.py script. (Closed)
Patch Set: Suppress warnings about unused variable. Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/remote_bitrate_estimator/test/packet_receiver.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.cc b/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.cc
index 2f5dcee68486235f17e2a472fb5491387637fbb0..5bc6219cb568e927b44a7e96509cde27cf12f453 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.cc
@@ -44,15 +44,15 @@ PacketReceiver::PacketReceiver(PacketProcessorListener* listener,
// Metric recorder plots them in separated figures,
// alignment will take place with the #1 left axis.
- prefixes.push_back("Throughput_kbps#1");
+ prefixes.push_back("MetricRecorderThroughput_kbps#1");
prefixes.push_back("Sending_Estimate_kbps#1");
prefixes.push_back("Delay_ms_#1");
prefixes.push_back("Packet_Loss_#1");
prefixes.push_back("Objective_function_#1");
// Plot Total/PerFlow Available capacity together with throughputs.
- prefixes.push_back("Throughput_kbps#1"); // Total Available.
- prefixes.push_back("Throughput_kbps#1"); // Available per flow.
+ prefixes.push_back("Capacity_kbps#1"); // Total Available.
+ prefixes.push_back("PerFlowCapacity_kbps#1"); // Available per flow.
bool plot_loss = plot_delay; // Plot loss if delay is plotted.
metric_recorder_->SetPlotInformation(prefixes, plot_delay, plot_loss);

Powered by Google App Engine
This is Rietveld 408576698