Index: webrtc/video/rtp_stream_receiver.cc |
diff --git a/webrtc/video/rtp_stream_receiver.cc b/webrtc/video/rtp_stream_receiver.cc |
index 3bbf69e9b20d69005291b10f8b7d548c0c22f4aa..972e6dea92476109ef37c0853a5fc769de34845c 100644 |
--- a/webrtc/video/rtp_stream_receiver.cc |
+++ b/webrtc/video/rtp_stream_receiver.cc |
@@ -168,7 +168,7 @@ RtpStreamReceiver::RtpStreamReceiver( |
kv.first); |
} |
- if (IsFecEnabled()) { |
+ if (IsUlpfecEnabled()) { |
VideoCodec ulpfec_codec = {}; |
ulpfec_codec.codecType = kVideoCodecULPFEC; |
strncpy(ulpfec_codec.plName, "ulpfec", sizeof(ulpfec_codec.plName)); |
@@ -379,7 +379,7 @@ int32_t RtpStreamReceiver::SliceLossIndicationRequest( |
static_cast<uint8_t>(picture_id)); |
} |
-bool RtpStreamReceiver::IsFecEnabled() const { |
+bool RtpStreamReceiver::IsUlpfecEnabled() const { |
return config_.rtp.ulpfec.ulpfec_payload_type != -1; |
} |