Index: webrtc/modules/audio_coding/test/delay_test.cc |
diff --git a/webrtc/modules/audio_coding/test/delay_test.cc b/webrtc/modules/audio_coding/test/delay_test.cc |
index 4f9ed533f60394a24768a4a69311080358c1cd8c..167210ac6b157e4cb5b434b50e0d68365d145c22 100644 |
--- a/webrtc/modules/audio_coding/test/delay_test.cc |
+++ b/webrtc/modules/audio_coding/test/delay_test.cc |
@@ -107,8 +107,10 @@ class DelayTest { |
continue; |
if (STR_CASE_CMP(my_codec_param.plname, "telephone-event") == 0) |
continue; |
- ASSERT_EQ(0, acm_b_->RegisterReceiveCodec(my_codec_param)) << |
- "Couldn't register receive codec.\n"; |
+ ASSERT_EQ(true, |
+ acm_b_->RegisterReceiveCodec(my_codec_param.pltype, |
+ CodecInstToSdp(my_codec_param))) |
+ << "Couldn't register receive codec.\n"; |
ossu
2016/10/05 13:39:58
Completely unrelated: It can't be the case that th
kwiberg-webrtc
2016/10/06 12:14:52
Probably not (although I'd be surprised if no othe
|
} |
// Create and connect the channel |