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

Unified Diff: webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.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/test/fuzzers/congestion_controller_feedback_fuzzer.cc
diff --git a/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc b/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc
index 496af90c6995783cb9211519c31cfa9e31c04144..6d5deab2cd509962a57d2c8cac8e04cf7ed65c62 100644
--- a/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc
+++ b/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc
@@ -21,7 +21,8 @@ class NullBitrateObserver : public CongestionController::Observer,
~NullBitrateObserver() override {}
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 {}
void OnReceiveBitrateChanged(const std::vector<uint32_t>& ssrcs,
uint32_t bitrate) override {}
};

Powered by Google App Engine
This is Rietveld 408576698