OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 k * (fabs(modified_offset) - threshold_) * (now_ms - last_update_ms_); | 136 k * (fabs(modified_offset) - threshold_) * (now_ms - last_update_ms_); |
137 | 137 |
138 const double kMinThreshold = 6; | 138 const double kMinThreshold = 6; |
139 const double kMaxThreshold = 600; | 139 const double kMaxThreshold = 600; |
140 threshold_ = std::min(std::max(threshold_, kMinThreshold), kMaxThreshold); | 140 threshold_ = std::min(std::max(threshold_, kMinThreshold), kMaxThreshold); |
141 | 141 |
142 last_update_ms_ = now_ms; | 142 last_update_ms_ = now_ms; |
143 } | 143 } |
144 | 144 |
145 void OveruseDetector::InitializeExperiment() { | 145 void OveruseDetector::InitializeExperiment() { |
146 DCHECK(in_experiment_); | 146 RTC_DCHECK(in_experiment_); |
147 double k_up = 0.0; | 147 double k_up = 0.0; |
148 double k_down = 0.0; | 148 double k_down = 0.0; |
149 overusing_time_threshold_ = kOverUsingTimeThreshold; | 149 overusing_time_threshold_ = kOverUsingTimeThreshold; |
150 if (ReadExperimentConstants(&k_up, &k_down)) { | 150 if (ReadExperimentConstants(&k_up, &k_down)) { |
151 k_up_ = k_up; | 151 k_up_ = k_up; |
152 k_down_ = k_down; | 152 k_down_ = k_down; |
153 } | 153 } |
154 } | 154 } |
155 } // namespace webrtc | 155 } // namespace webrtc |
OLD | NEW |