aboutsummaryrefslogtreecommitdiff
path: root/rtc_tools/video_replay.cc
diff options
context:
space:
mode:
Diffstat (limited to 'rtc_tools/video_replay.cc')
-rw-r--r--rtc_tools/video_replay.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtc_tools/video_replay.cc b/rtc_tools/video_replay.cc
index c8bfec2ade..b19850ed57 100644
--- a/rtc_tools/video_replay.cc
+++ b/rtc_tools/video_replay.cc
@@ -494,10 +494,10 @@ class RtpReplayer final {
"worker_thread", TaskQueueFactory::Priority::NORMAL));
rtc::Event event;
worker_thread_->PostTask([&]() {
- Call::Config call_config(&event_log_);
+ CallConfig call_config(&event_log_);
call_config.trials = field_trials_.get();
call_config.task_queue_factory = task_queue_factory;
- call_.reset(Call::Create(call_config));
+ call_ = Call::Create(call_config);
// Creation of the streams must happen inside a task queue because it is
// resued as a worker thread.