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}
This commit is contained in:
kwiberg 2017-03-29 04:06:05 -07:00 committed by Commit bot
parent 43d57dea32
commit a1ab8bafe7

View File

@ -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);
}