update format of recently added TODOs.
Some TODOs with an old from where added in https://webrtc-review.googlesource.com/c/src/+/363946.
This CL updates the TODO comments to the current form.
Bug: None
Change-Id: Id61dca5a0f4d705f4dfe74f6523dae3e357d49ba
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/365140
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Reviewed-by: Henrik Andreassson <henrika@webrtc.org>
Commit-Queue: Olov Brändström <brandstrom@google.com>
Cr-Commit-Position: refs/heads/main@{#43209}
diff --git a/media/base/media_config.h b/media/base/media_config.h
index 45fd903..4101acb 100644
--- a/media/base/media_config.h
+++ b/media/base/media_config.h
@@ -29,8 +29,8 @@
// necessarily monotonically increasing, or from a monotonic clock that is
// set to rtc::TimeUTCMicros() at first call, and then procceeds to increase
// monotonically.
- // TODO(webrtc:370535296): Change default value to true and delete this flag
- // once downstream projects have migrated.
+ // TODO: bugs.webrtc.org/370535296 - Change default value to true and delete
+ // this flag once downstream projects have migrated.
bool stats_timestamp_with_environment_clock = false;
// Video-specific config.
diff --git a/modules/rtp_rtcp/include/report_block_data.cc b/modules/rtp_rtcp/include/report_block_data.cc
index 84fbea3..e8ab17a 100644
--- a/modules/rtp_rtcp/include/report_block_data.cc
+++ b/modules/rtp_rtcp/include/report_block_data.cc
@@ -21,8 +21,8 @@
return TimeDelta::Seconds(jitter()) / rtp_clock_rate_hz;
}
-// TODO(webrtc:370535296): When (webrtc:370535296) is fixed, we don't need the
-// utc timestamp.
+// TODO: bugs.webrtc.org/370535296 - Remove the utc timestamp when linked
+// issue is fixed.
void ReportBlockData::SetReportBlock(uint32_t sender_ssrc,
const rtcp::ReportBlock& report_block,
Timestamp report_block_timestamp_utc,
diff --git a/modules/rtp_rtcp/include/report_block_data.h b/modules/rtp_rtcp/include/report_block_data.h
index 5861f21..6f55971 100644
--- a/modules/rtp_rtcp/include/report_block_data.h
+++ b/modules/rtp_rtcp/include/report_block_data.h
@@ -72,8 +72,8 @@
TimeDelta jitter(int rtp_clock_rate_hz) const;
// Time in utc epoch (Jan 1st, 1970) the report block was received.
- // TODO(webrtc:370535296): When (webrtc:370535296) is fixed, we don't need the
- // utc timestamp.
+ // TODO: bugs.webrtc.org/370535296 - Remove the utc timestamp when linked
+ // issue is fixed.
Timestamp report_block_timestamp_utc() const {
return report_block_timestamp_utc_;
}
@@ -96,8 +96,8 @@
extended_highest_sequence_number_ = sn;
}
void set_jitter(uint32_t jitter) { jitter_ = jitter; }
- // TODO(webrtc:370535296): When (webrtc:370535296) is fixed, we don't need the
- // utc timestamp.
+ // TODO: bugs.webrtc.org/370535296 - Remove the utc timestamp when linked
+ // issue is fixed.
void set_report_block_timestamp_utc(Timestamp arrival_time) {
report_block_timestamp_utc_ = arrival_time;
}
@@ -118,8 +118,8 @@
int32_t cumulative_lost_ = 0;
uint32_t extended_highest_sequence_number_ = 0;
uint32_t jitter_ = 0;
- // TODO(webrtc:370535296): When (webrtc:370535296) is fixed, we don't need the
- // utc timestamp.
+ // TODO: bugs.webrtc.org/370535296 - Remove the utc timestamp when linked
+ // issue is fixed.
Timestamp report_block_timestamp_utc_ = Timestamp::Zero();
Timestamp report_block_timestamp_ = Timestamp::Zero();
TimeDelta last_rtt_ = TimeDelta::Zero();