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 |
11 #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" | 11 #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" |
12 | 12 |
13 #include <math.h> | 13 #include <math.h> |
14 #include <stdlib.h> | 14 #include <stdlib.h> |
15 | 15 |
16 #include <algorithm> | 16 #include <algorithm> |
17 #include <sstream> | 17 #include <sstream> |
18 #include <string> | 18 #include <string> |
19 | 19 |
20 #include "webrtc/base/checks.h" | 20 #include "webrtc/base/checks.h" |
21 #include "webrtc/base/logging.h" | 21 #include "webrtc/base/logging.h" |
22 #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" | 22 #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" |
23 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" | 23 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" |
24 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | 24 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
25 #include "webrtc/system_wrappers/include/field_trial.h" | 25 #include "webrtc/system_wrappers/include/field_trial.h" |
26 #include "webrtc/system_wrappers/include/trace.h" | |
27 | 26 |
28 namespace webrtc { | 27 namespace webrtc { |
29 | 28 |
30 const char kAdaptiveThresholdExperiment[] = "WebRTC-AdaptiveBweThreshold"; | 29 const char kAdaptiveThresholdExperiment[] = "WebRTC-AdaptiveBweThreshold"; |
31 const char kEnabledPrefix[] = "Enabled"; | 30 const char kEnabledPrefix[] = "Enabled"; |
32 const size_t kEnabledPrefixLength = sizeof(kEnabledPrefix) - 1; | 31 const size_t kEnabledPrefixLength = sizeof(kEnabledPrefix) - 1; |
33 const char kDisabledPrefix[] = "Disabled"; | 32 const char kDisabledPrefix[] = "Disabled"; |
34 const size_t kDisabledPrefixLength = sizeof(kDisabledPrefix) - 1; | 33 const size_t kDisabledPrefixLength = sizeof(kDisabledPrefix) - 1; |
35 | 34 |
36 const double kMaxAdaptOffsetMs = 15.0; | 35 const double kMaxAdaptOffsetMs = 15.0; |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 RTC_DCHECK(in_experiment_); | 156 RTC_DCHECK(in_experiment_); |
158 double k_up = 0.0; | 157 double k_up = 0.0; |
159 double k_down = 0.0; | 158 double k_down = 0.0; |
160 overusing_time_threshold_ = kOverUsingTimeThreshold; | 159 overusing_time_threshold_ = kOverUsingTimeThreshold; |
161 if (ReadExperimentConstants(&k_up, &k_down)) { | 160 if (ReadExperimentConstants(&k_up, &k_down)) { |
162 k_up_ = k_up; | 161 k_up_ = k_up; |
163 k_down_ = k_down; | 162 k_down_ = k_down; |
164 } | 163 } |
165 } | 164 } |
166 } // namespace webrtc | 165 } // namespace webrtc |
OLD | NEW |