|
webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
#include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h"#include <math.h>#include <stdlib.h>#include <algorithm>#include <sstream>#include <string>#include "webrtc/base/checks.h"#include "webrtc/base/logging.h"#include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h"#include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h"#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"#include "webrtc/system_wrappers/include/field_trial.h"#include "webrtc/system_wrappers/include/trace.h"Namespaces | |
| webrtc | |
Functions | |
| bool | webrtc::AdaptiveThresholdExperimentIsDisabled () |
| bool | webrtc::ReadExperimentConstants (double *k_up, double *k_down) |
Variables | |
| const char | webrtc::kAdaptiveThresholdExperiment [] = "WebRTC-AdaptiveBweThreshold" |
| const char | webrtc::kEnabledPrefix [] = "Enabled" |
| const size_t | webrtc::kEnabledPrefixLength = sizeof(kEnabledPrefix) - 1 |
| const char | webrtc::kDisabledPrefix [] = "Disabled" |
| const size_t | webrtc::kDisabledPrefixLength = sizeof(kDisabledPrefix) - 1 |
| const double | webrtc::kMaxAdaptOffsetMs = 15.0 |
| const double | webrtc::kOverUsingTimeThreshold = 10 |
| const int | webrtc::kMinNumDeltas = 60 |
1.8.13