Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(752)

Unified Diff: webrtc/call/rampup_tests.cc

Issue 2391963002: Rename FecConfig to UlpfecConfig in config.h. (Closed)
Patch Set: Rebase. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/call/call_perf_tests.cc ('k') | webrtc/config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_) {
« no previous file with comments | « webrtc/call/call_perf_tests.cc ('k') | webrtc/config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698