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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/plot_dynamics.py

Issue 2489323002: Add a new overuse estimator for the delay based BWE behind experiment. (Closed)
Patch Set: Rebase 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
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/remote_bitrate_estimator/test/plot_dynamics.py
diff --git a/webrtc/modules/remote_bitrate_estimator/test/plot_dynamics.py b/webrtc/modules/remote_bitrate_estimator/test/plot_dynamics.py
index dac47626debf72c3761db6ff53ee98cf11fd9d8b..5fdac51d09812a74729556f230598e2404bbebc1 100755
--- a/webrtc/modules/remote_bitrate_estimator/test/plot_dynamics.py
+++ b/webrtc/modules/remote_bitrate_estimator/test/plot_dynamics.py
@@ -140,8 +140,13 @@ def main():
detector_state.addSubplot(['offset_ms'], "Time (s)", "Offset")
detector_state.addSubplot(['gamma_ms'], "Time (s)", "Gamma")
+ trendline_state = Figure("TrendlineState")
+ trendline_state.addSubplot(["accumulated_delay_ms", "smoothed_delay_ms"],
+ "Time (s)", "Delay (ms)")
+ trendline_state.addSubplot(["trendline_slope"], "Time (s)", "Slope")
+
# Select which figures to plot here.
- figures = [receiver, detector_state]
+ figures = [receiver, detector_state, trendline_state]
# Add samples to the figures.
for line in sys.stdin:
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698