Update/delete old TODOs

Bug: webrtc:10198
Change-Id: I0341e068d792bc0b143db86e675988f4cd07ff2e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/267822
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#37454}
diff --git a/call/rtp_stream_receiver_controller.h b/call/rtp_stream_receiver_controller.h
index 284c9fa..38b2f11 100644
--- a/call/rtp_stream_receiver_controller.h
+++ b/call/rtp_stream_receiver_controller.h
@@ -22,10 +22,8 @@
 
 // This class represents the RTP receive parsing and demuxing, for a
 // single RTP session.
-// TODO(nisse): Add RTCP processing, we should aim to terminate RTCP
-// and not leave any RTCP processing to individual receive streams.
-// TODO(nisse): Extract per-packet processing, including parsing and
-// demuxing, into a separate class.
+// TODO(bugs.webrtc.org/7135): Add RTCP processing, we should aim to terminate
+// RTCP and not leave any RTCP processing to individual receive streams.
 class RtpStreamReceiverController
     : public RtpStreamReceiverControllerInterface {
  public:
@@ -41,7 +39,7 @@
   bool AddSink(uint32_t ssrc, RtpPacketSinkInterface* sink) override;
   size_t RemoveSink(const RtpPacketSinkInterface* sink) override;
 
-  // TODO(nisse): Not yet responsible for parsing.
+  // TODO(bugs.webrtc.org/7135): Not yet responsible for parsing.
   bool OnRtpPacket(const RtpPacketReceived& packet);
 
  private: