From 5c35d08703be82e5c53df7eb909c68a5b1cfea42 Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Thu, 25 May 2023 08:23:15 +0200 Subject: [PATCH] Replace "RTRR" with "RRTR" which is the correct term used in https://www.rfc-editor.org/rfc/rfc3611#section-4.4 BUG=None Change-Id: Iab5a1de6b69a8495aa9a6f79531053f4f2421c27 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/306480 Commit-Queue: Philipp Hancke Reviewed-by: Ilya Nikolaevskiy Reviewed-by: Danil Chapovalov Cr-Commit-Position: refs/heads/main@{#40143} --- modules/rtp_rtcp/source/rtp_rtcp_impl2_unittest.cc | 4 ++-- modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/rtp_rtcp/source/rtp_rtcp_impl2_unittest.cc b/modules/rtp_rtcp/source/rtp_rtcp_impl2_unittest.cc index 950bcb9bc4..d183c5bebc 100644 --- a/modules/rtp_rtcp/source/rtp_rtcp_impl2_unittest.cc +++ b/modules/rtp_rtcp/source/rtp_rtcp_impl2_unittest.cc @@ -442,10 +442,10 @@ TEST_F(RtpRtcpImpl2Test, Rtt) { } TEST_F(RtpRtcpImpl2Test, RttForReceiverOnly) { - // Receiver module should send a Receiver time reference report (RTRR). + // Receiver module should send a Receiver reference time report block (RRTR). EXPECT_EQ(0, receiver_.impl_->SendRTCP(kRtcpReport)); - // Sender module should send a response to the last received RTRR (DLRR). + // Sender module should send a response to the last received RRTR (DLRR). AdvanceTime(TimeDelta::Millis(1000)); // Send Frame before sending a SR. EXPECT_TRUE(SendFrame(&sender_, sender_video_.get(), kBaseLayerTid)); diff --git a/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc b/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc index 2c05827cb5..4875ee96e0 100644 --- a/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc +++ b/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc @@ -309,10 +309,10 @@ TEST_F(RtpRtcpImplTest, Rtt) { } TEST_F(RtpRtcpImplTest, RttForReceiverOnly) { - // Receiver module should send a Receiver time reference report (RTRR). + // Receiver module should send a Receiver reference time report block (RRTR). EXPECT_EQ(0, receiver_.impl_->SendRTCP(kRtcpReport)); - // Sender module should send a response to the last received RTRR (DLRR). + // Sender module should send a response to the last received RRTR (DLRR). clock_.AdvanceTimeMilliseconds(1000); // Send Frame before sending a SR. SendFrame(&sender_, sender_video_.get(), kBaseLayerTid);