| Index: webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| index 6b2b518375150ff7bd7a0f7a4820b5875620ee1b..879cd28afc48e78f45d4c5c5b98fdf472aa63def 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc
|
| @@ -90,8 +90,8 @@ BandwidthUsage OveruseDetector::Detect(double offset,
|
| return BandwidthUsage::kBwNormal;
|
| }
|
| const double T = std::min(num_of_deltas, kMinNumDeltas) * offset;
|
| - BWE_TEST_LOGGING_PLOT(1, "offset_ms#1", now_ms, offset);
|
| - BWE_TEST_LOGGING_PLOT(1, "gamma_ms#1", now_ms, threshold_ / kMinNumDeltas);
|
| + BWE_TEST_LOGGING_PLOT(1, "T", now_ms, T);
|
| + BWE_TEST_LOGGING_PLOT(1, "threshold", now_ms, threshold_);
|
| if (T > threshold_) {
|
| if (time_over_using_ == -1) {
|
| // Initialize the timer. Assume that we've been
|
|
|