| Index: webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc
|
| index 63fa830cc4c04db5e0d2a51e8df709f729591495..a4715d2a1fd56bfbcc547e44163e8c7de601eec2 100644
|
| --- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc
|
| +++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc
|
| @@ -146,19 +146,9 @@ class RtpRtcpRtcpTest : public ::testing::Test {
|
| memcpy(voice_codec.plname, "PCMU", 5);
|
|
|
| EXPECT_EQ(0, module1->RegisterSendPayload(voice_codec));
|
| - EXPECT_EQ(0, rtp_receiver1_->RegisterReceivePayload(
|
| - voice_codec.plname,
|
| - voice_codec.pltype,
|
| - voice_codec.plfreq,
|
| - voice_codec.channels,
|
| - (voice_codec.rate < 0) ? 0 : voice_codec.rate));
|
| + EXPECT_EQ(0, rtp_receiver1_->RegisterReceivePayload(voice_codec));
|
| EXPECT_EQ(0, module2->RegisterSendPayload(voice_codec));
|
| - EXPECT_EQ(0, rtp_receiver2_->RegisterReceivePayload(
|
| - voice_codec.plname,
|
| - voice_codec.pltype,
|
| - voice_codec.plfreq,
|
| - voice_codec.channels,
|
| - (voice_codec.rate < 0) ? 0 : voice_codec.rate));
|
| + EXPECT_EQ(0, rtp_receiver2_->RegisterReceivePayload(voice_codec));
|
|
|
| // We need to send one RTP packet to get the RTCP packet to be accepted by
|
| // the receiving module.
|
|
|