mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

This feature has had positive impact in downstream experiments, so we should enable it by default. It will be kept around as a kill switch for a while though. Bug: webrtc:15260 Change-Id: Ibfd25f5be124f65cd4360ae76f7022bb46f65301 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/309781 Reviewed-by: Åsa Persson <asapersson@webrtc.org> Commit-Queue: Rasmus Brandt <brandtr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#40327}
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/*
|
|
* Copyright 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
#include "rtc_base/experiments/rtt_mult_experiment.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <algorithm>
|
|
#include <string>
|
|
|
|
#include "rtc_base/logging.h"
|
|
#include "system_wrappers/include/field_trial.h"
|
|
|
|
namespace webrtc {
|
|
|
|
namespace {
|
|
const char kRttMultExperiment[] = "WebRTC-RttMult";
|
|
} // namespace
|
|
|
|
bool RttMultExperiment::RttMultEnabled() {
|
|
return !field_trial::IsDisabled(kRttMultExperiment);
|
|
}
|
|
|
|
absl::optional<RttMultExperiment::Settings>
|
|
RttMultExperiment::GetRttMultValue() {
|
|
if (!RttMultExperiment::RttMultEnabled()) {
|
|
return absl::nullopt;
|
|
}
|
|
return RttMultExperiment::Settings{.rtt_mult_setting = 0.9,
|
|
.rtt_mult_add_cap_ms = 200.0};
|
|
}
|
|
|
|
} // namespace webrtc
|