| Index: webrtc/call/call_perf_tests.cc
|
| diff --git a/webrtc/call/call_perf_tests.cc b/webrtc/call/call_perf_tests.cc
|
| index 81fbdb7d49f9a5ec28d50b60382a73191de9098d..b980a5e5c7a41015031ef020d0ea8bc50ba6276a 100644
|
| --- a/webrtc/call/call_perf_tests.cc
|
| +++ b/webrtc/call/call_perf_tests.cc
|
| @@ -159,9 +159,9 @@ void CallPerfTest::TestAudioVideoSync(FecMode fec,
|
| FakeAudioDevice fake_audio_device(Clock::GetRealTimeClock(), audio_filename,
|
| audio_rtp_speed);
|
| EXPECT_EQ(0, voe_base->Init(&fake_audio_device, nullptr, decoder_factory_));
|
| - Config voe_config;
|
| - voe_config.Set<VoicePacing>(new VoicePacing(true));
|
| - int send_channel_id = voe_base->CreateChannel(voe_config);
|
| + VoEBase::ChannelConfig config;
|
| + config.enable_voice_pacing = true;
|
| + int send_channel_id = voe_base->CreateChannel(config);
|
| int recv_channel_id = voe_base->CreateChannel();
|
|
|
| AudioState::Config send_audio_state_config;
|
|
|