From a1ab8bafe7fd8fd7a89faa0fd1d519bba5305285 Mon Sep 17 00:00:00 2001 From: kwiberg Date: Wed, 29 Mar 2017 04:06:05 -0700 Subject: [PATCH] We need to specify the decoder map explicitly nowadays (Since this CL landed: https://codereview.webrtc.org/2774833003/.) Without this fix, low_bandwidth_audio_test breaks on the perf bots. BUG=webrtc:5805 Review-Url: https://codereview.webrtc.org/2786603002 Cr-Commit-Position: refs/heads/master@{#17440} --- webrtc/test/call_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/test/call_test.cc b/webrtc/test/call_test.cc index ad55421f66..3a13eeef86 100644 --- a/webrtc/test/call_test.cc +++ b/webrtc/test/call_test.cc @@ -264,6 +264,7 @@ void CallTest::CreateMatchingReceiveConfigs(Transport* rtcp_send_transport) { audio_config.voe_channel_id = voe_recv_.channel_id; audio_config.rtp.remote_ssrc = audio_send_config_.rtp.ssrc; audio_config.decoder_factory = decoder_factory_; + audio_config.decoder_map = {{120, {"opus", 48000, 2}}}; audio_receive_configs_.push_back(audio_config); }