Index: webrtc/call/rampup_tests.cc |
diff --git a/webrtc/call/rampup_tests.cc b/webrtc/call/rampup_tests.cc |
index 9c17aae5aa5865381442fb4b16469278e76ff800..0199cc8ccef104e2e877159db572e620ecfdd6d4 100644 |
--- a/webrtc/call/rampup_tests.cc |
+++ b/webrtc/call/rampup_tests.cc |
@@ -169,9 +169,9 @@ void RampUpTester::ModifyVideoConfigs( |
send_config->rtp.rtx.ssrcs = video_rtx_ssrcs_; |
} |
if (red_) { |
- send_config->rtp.fec.ulpfec_payload_type = |
+ send_config->rtp.ulpfec.ulpfec_payload_type = |
test::CallTest::kUlpfecPayloadType; |
- send_config->rtp.fec.red_payload_type = test::CallTest::kRedPayloadType; |
+ send_config->rtp.ulpfec.red_payload_type = test::CallTest::kRedPayloadType; |
} |
size_t i = 0; |
@@ -184,10 +184,10 @@ void RampUpTester::ModifyVideoConfigs( |
recv_config.rtp.nack.rtp_history_ms = send_config->rtp.nack.rtp_history_ms; |
if (red_) { |
- recv_config.rtp.fec.red_payload_type = |
- send_config->rtp.fec.red_payload_type; |
- recv_config.rtp.fec.ulpfec_payload_type = |
- send_config->rtp.fec.ulpfec_payload_type; |
+ recv_config.rtp.ulpfec.red_payload_type = |
+ send_config->rtp.ulpfec.red_payload_type; |
+ recv_config.rtp.ulpfec.ulpfec_payload_type = |
+ send_config->rtp.ulpfec.ulpfec_payload_type; |
} |
if (rtx_) { |