summaryrefslogtreecommitdiff
path: root/video_engine/test/full_stack.cc
diff options
context:
space:
mode:
Diffstat (limited to 'video_engine/test/full_stack.cc')
-rw-r--r--video_engine/test/full_stack.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/video_engine/test/full_stack.cc b/video_engine/test/full_stack.cc
index b19d20ab..626da309 100644
--- a/video_engine/test/full_stack.cc
+++ b/video_engine/test/full_stack.cc
@@ -284,7 +284,10 @@ TEST_P(FullStackTest, NoPacketLoss) {
params.avg_ssim_threshold,
static_cast<uint64_t>(FLAGS_seconds * params.clip.fps));
- scoped_ptr<newapi::VideoCall> call(video_engine->CreateCall(&analyzer));
+ newapi::VideoCall::Config call_config;
+ call_config.send_transport = &analyzer;
+
+ scoped_ptr<newapi::VideoCall> call(video_engine->CreateCall(call_config));
analyzer.receiver_ = call->Receiver();
transport.SetReceiver(&analyzer);