mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +01:00

find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/TimeDelta::Micros<\(.*\)>()/TimeDelta::Micros(\1)/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/TimeDelta::Millis<\(.*\)>()/TimeDelta::Millis(\1)/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/TimeDelta::Seconds<\(.*\)>()/TimeDelta::Seconds(\1)/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/TimeDelta::us/TimeDelta::Micros/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/TimeDelta::ms/TimeDelta::Millis/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/TimeDelta::seconds/TimeDelta::Seconds/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/Timestamp::Micros<\(.*\)>()/Timestamp::Micros(\1)/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/Timestamp::Millis<\(.*\)>()/Timestamp::Millis(\1)/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/Timestamp::Seconds<\(.*\)>()/Timestamp::Seconds(\1)/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/Timestamp::us/Timestamp::Micros/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/Timestamp::ms/Timestamp::Millis/g" find . -type f \( -name "*.h" -o -name "*.cc" \) | xargs sed -i -e "s/Timestamp::seconds/Timestamp::Seconds/g" git cl format Bug: None Change-Id: I87469d2e4a38369654da839ab7c838215a7911e7 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/168402 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30491}
65 lines
2.3 KiB
C++
65 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 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 "api/transport/goog_cc_factory.h"
|
|
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
#include "modules/congestion_controller/goog_cc/goog_cc_network_control.h"
|
|
|
|
namespace webrtc {
|
|
GoogCcNetworkControllerFactory::GoogCcNetworkControllerFactory(
|
|
RtcEventLog* event_log)
|
|
: event_log_(event_log) {}
|
|
|
|
GoogCcNetworkControllerFactory::GoogCcNetworkControllerFactory(
|
|
NetworkStatePredictorFactoryInterface* network_state_predictor_factory) {
|
|
factory_config_.network_state_predictor_factory =
|
|
network_state_predictor_factory;
|
|
}
|
|
|
|
GoogCcNetworkControllerFactory::GoogCcNetworkControllerFactory(
|
|
GoogCcFactoryConfig config)
|
|
: factory_config_(std::move(config)) {}
|
|
|
|
std::unique_ptr<NetworkControllerInterface>
|
|
GoogCcNetworkControllerFactory::Create(NetworkControllerConfig config) {
|
|
if (event_log_)
|
|
config.event_log = event_log_;
|
|
GoogCcConfig goog_cc_config;
|
|
goog_cc_config.feedback_only = factory_config_.feedback_only;
|
|
if (factory_config_.network_state_estimator_factory) {
|
|
RTC_DCHECK(config.key_value_config);
|
|
goog_cc_config.network_state_estimator =
|
|
factory_config_.network_state_estimator_factory->Create(
|
|
config.key_value_config);
|
|
}
|
|
if (factory_config_.network_state_predictor_factory) {
|
|
goog_cc_config.network_state_predictor =
|
|
factory_config_.network_state_predictor_factory
|
|
->CreateNetworkStatePredictor();
|
|
}
|
|
return std::make_unique<GoogCcNetworkController>(config,
|
|
std::move(goog_cc_config));
|
|
}
|
|
|
|
TimeDelta GoogCcNetworkControllerFactory::GetProcessInterval() const {
|
|
const int64_t kUpdateIntervalMs = 25;
|
|
return TimeDelta::Millis(kUpdateIntervalMs);
|
|
}
|
|
|
|
GoogCcFeedbackNetworkControllerFactory::GoogCcFeedbackNetworkControllerFactory(
|
|
RtcEventLog* event_log)
|
|
: GoogCcNetworkControllerFactory(event_log) {
|
|
factory_config_.feedback_only = true;
|
|
}
|
|
|
|
} // namespace webrtc
|