diff --git a/modules/include/module_common_types.h b/modules/include/module_common_types.h index ab103567c4..83b63a6e74 100644 --- a/modules/include/module_common_types.h +++ b/modules/include/module_common_types.h @@ -93,7 +93,6 @@ class KeyFrameRequestSender { }; // Interface used by LossNotificationController to communicate to RtpRtcp. -// TODO(bugs.webrtc.org/10336): Hook up to RtpRtcp. class LossNotificationSender { public: virtual ~LossNotificationSender() {} diff --git a/video/rtp_video_stream_receiver.cc b/video/rtp_video_stream_receiver.cc index 668dfa45f6..aae1f097ac 100644 --- a/video/rtp_video_stream_receiver.cc +++ b/video/rtp_video_stream_receiver.cc @@ -336,9 +336,6 @@ int32_t RtpVideoStreamReceiver::OnReceivedPayloadData( RTC_LOG(LS_WARNING) << "LossNotificationController does not support reordering."; } else { - // TODO(bugs.webrtc.org/10336): Coordinate with |nack_module_| to make - // sure that only a single RTCP packet is produced if both a LNTF as - // well as a NACK (or key frame request) should be issued. loss_notification_controller_->OnReceivedPacket(packet); } }