aboutsummaryrefslogtreecommitdiff
path: root/video/rtp_video_stream_receiver2.cc
diff options
context:
space:
mode:
authorNiels Möller <nisse@webrtc.org>2022-07-05 09:59:27 +0200
committerWebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-05 09:09:44 +0000
commitb5b159d98c0781ef7823d03061c374367cde66f3 (patch)
treec5f74279f832e7197a35bcdd31beb9a736936b16 /video/rtp_video_stream_receiver2.cc
parent27b35a7882ccf00bb1c97592f5b51072a5125b87 (diff)
downloadwebrtc-b5b159d98c0781ef7823d03061c374367cde66f3.tar.gz
Update old TODO comments
Bug: None Change-Id: I531ed648fe3d1f0dd1202f53c59ed023aed1ea7c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/267664 Commit-Queue: Niels Moller <nisse@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#37432}
Diffstat (limited to 'video/rtp_video_stream_receiver2.cc')
-rw-r--r--video/rtp_video_stream_receiver2.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/video/rtp_video_stream_receiver2.cc b/video/rtp_video_stream_receiver2.cc
index 1ed460764d..afc51fbea2 100644
--- a/video/rtp_video_stream_receiver2.cc
+++ b/video/rtp_video_stream_receiver2.cc
@@ -646,11 +646,11 @@ void RtpVideoStreamReceiver2::OnRecoveredPacket(const uint8_t* rtp_packet,
packet.IdentifyExtensions(rtp_header_extensions_);
packet.set_payload_type_frequency(kVideoPayloadTypeFrequency);
- // TODO(nisse): UlpfecReceiverImpl::ProcessReceivedFec passes both
- // original (decapsulated) media packets and recovered packets to
- // this callback. We need a way to distinguish, for setting
- // packet.recovered() correctly. Ideally, move RED decapsulation out
- // of the Ulpfec implementation.
+ // TODO(bugs.webrtc.org/7135): UlpfecReceiverImpl::ProcessReceivedFec passes
+ // both original (decapsulated) media packets and recovered packets to this
+ // callback. We need a way to distinguish, for setting packet.recovered()
+ // correctly. Ideally, move RED decapsulation out of the Ulpfec
+ // implementation.
ReceivePacket(packet);
}