mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +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}
49 lines
1.7 KiB
C++
49 lines
1.7 KiB
C++
/*
|
|
* Copyright 2019 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/test/create_time_controller.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "call/call.h"
|
|
#include "test/time_controller/external_time_controller.h"
|
|
#include "test/time_controller/simulated_time_controller.h"
|
|
|
|
namespace webrtc {
|
|
|
|
std::unique_ptr<TimeController> CreateTimeController(
|
|
ControlledAlarmClock* alarm) {
|
|
return std::make_unique<ExternalTimeController>(alarm);
|
|
}
|
|
|
|
std::unique_ptr<TimeController> CreateSimulatedTimeController() {
|
|
return std::make_unique<GlobalSimulatedTimeController>(
|
|
Timestamp::Seconds(10000));
|
|
}
|
|
|
|
std::unique_ptr<CallFactoryInterface> CreateTimeControllerBasedCallFactory(
|
|
TimeController* time_controller) {
|
|
class TimeControllerBasedCallFactory : public CallFactoryInterface {
|
|
public:
|
|
explicit TimeControllerBasedCallFactory(TimeController* time_controller)
|
|
: time_controller_(time_controller) {}
|
|
Call* CreateCall(const Call::Config& config) override {
|
|
return Call::Create(config, time_controller_->GetClock(),
|
|
time_controller_->CreateProcessThread("CallModules"),
|
|
time_controller_->CreateProcessThread("Pacer"));
|
|
}
|
|
|
|
private:
|
|
TimeController* time_controller_;
|
|
};
|
|
return std::make_unique<TimeControllerBasedCallFactory>(time_controller);
|
|
}
|
|
|
|
} // namespace webrtc
|