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

Unified Diff: webrtc/tools/event_log_visualizer/analyzer.cc

Issue 2518923003: Pass time constant to bwe smoothing filter. (Closed)
Patch Set: Add probing_interval_ms to NullBitrateObserver. 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/tools/event_log_visualizer/analyzer.cc
diff --git a/webrtc/tools/event_log_visualizer/analyzer.cc b/webrtc/tools/event_log_visualizer/analyzer.cc
index d9b772bcd6ecd77ce04713de0bf8c95afd3b0b36..485866c1a6fc1d794999e4ccf4a84959184b79ab 100644
--- a/webrtc/tools/event_log_visualizer/analyzer.cc
+++ b/webrtc/tools/event_log_visualizer/analyzer.cc
@@ -451,7 +451,8 @@ class BitrateObserver : public CongestionController::Observer,
void OnNetworkChanged(uint32_t bitrate_bps,
uint8_t fraction_loss,
- int64_t rtt_ms) override {
+ int64_t rtt_ms,
+ int64_t probing_interval_ms) override {
last_bitrate_bps_ = bitrate_bps;
bitrate_updated_ = true;
}

Powered by Google App Engine
This is Rietveld 408576698