Index: webrtc/video/end_to_end_tests.cc |
diff --git a/webrtc/video/end_to_end_tests.cc b/webrtc/video/end_to_end_tests.cc |
index 2c71e3951785cee43b0b5faa0165afd5c90d59d2..118b8ae2d273457365e2b67bf2491c6aace8f204 100644 |
--- a/webrtc/video/end_to_end_tests.cc |
+++ b/webrtc/video/end_to_end_tests.cc |
@@ -3846,10 +3846,11 @@ void VerifyEmptyUlpfecConfig(const UlpfecConfig& config) { |
<< "Enabling RTX in ULPFEC requires rtpmap: rtx negotiation."; |
} |
-void VerifyEmptyFlexfecConfig(const FlexfecConfig& config) { |
- EXPECT_EQ(-1, config.flexfec_payload_type) |
+void VerifyEmptyFlexfecConfig( |
+ const VideoSendStream::Config::Rtp::Flexfec& config) { |
+ EXPECT_EQ(-1, config.payload_type) |
<< "Enabling FlexFEC requires rtpmap: flexfec negotiation."; |
- EXPECT_EQ(0U, config.flexfec_ssrc) |
+ EXPECT_EQ(0U, config.ssrc) |
<< "Enabling FlexFEC requires ssrc-group: FEC-FR negotiation."; |
EXPECT_TRUE(config.protected_media_ssrcs.empty()) |
<< "Enabling FlexFEC requires ssrc-group: FEC-FR negotiation."; |