| Index: webrtc/video/rtp_stream_receiver.cc
|
| diff --git a/webrtc/video/rtp_stream_receiver.cc b/webrtc/video/rtp_stream_receiver.cc
|
| index cf108e13452d2d0b84cab37505760cd8ad93f3ab..576543bef682d05aa6cabef4790da3bb44fb76b7 100644
|
| --- a/webrtc/video/rtp_stream_receiver.cc
|
| +++ b/webrtc/video/rtp_stream_receiver.cc
|
| @@ -178,8 +178,10 @@ RtpStreamReceiver::RtpStreamReceiver(
|
| config_.rtp.ulpfec.red_rtx_payload_type,
|
| config_.rtp.ulpfec.red_payload_type);
|
| }
|
| -
|
| - rtp_rtcp_->SetUlpfecConfig(true, config_.rtp.ulpfec.red_payload_type,
|
| + // TODO(brandtr): It doesn't seem that |rtp_rtcp_| is used for sending any
|
| + // RTP packets. Investigate if this is the case, and if so, remove this
|
| + // call, since there are no RTP packets to protect with RED+ULPFEC.
|
| + rtp_rtcp_->SetUlpfecConfig(config_.rtp.ulpfec.red_payload_type,
|
| config_.rtp.ulpfec.ulpfec_payload_type);
|
| }
|
|
|
|
|