Chromium Code Reviews| Index: webrtc/video/video_quality_test.cc |
| diff --git a/webrtc/video/video_quality_test.cc b/webrtc/video/video_quality_test.cc |
| index b754d295485342a208420502be117e28ab1ee87e..570b779609f7e77d6362df782850c247c2f256ed 100644 |
| --- a/webrtc/video/video_quality_test.cc |
| +++ b/webrtc/video/video_quality_test.cc |
| @@ -1431,8 +1431,9 @@ void VideoQualityTest::SetupAudio(int send_channel_id, |
| audio_send_config_.min_bitrate_bps = kOpusMinBitrateBps; |
| audio_send_config_.max_bitrate_bps = kOpusBitrateFbBps; |
| } |
| - audio_send_config_.send_codec_spec.codec_inst = |
| - CodecInst{120, "OPUS", 48000, 960, 2, 64000}; |
| + audio_send_config_.send_codec_spec.payload_type = 120; |
| + // TODO(ossu): "Add stereo here?" |
|
kwiberg-webrtc
2017/02/21 23:35:03
Presumably yes---the "2" in the CodecInst in the o
|
| + audio_send_config_.send_codec_spec.format.format = {"OPUS", 48000, 2}; |
| audio_send_stream_ = call->CreateAudioSendStream(audio_send_config_); |