From 43d4eee8ce275370c41c4b7c828a224322bdd238 Mon Sep 17 00:00:00 2001 From: Evan Shrubsole Date: Thu, 12 Jan 2023 10:35:04 +0000 Subject: [PATCH] [Unwrap] Migrate rtp_rtcp_tests to RtpSequenceNumberUnwrapper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:13982 Change-Id: I59c189beb8f2420b63aa2fcd628ee7b030201c48 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/288969 Commit-Queue: Evan Shrubsole Auto-Submit: Evan Shrubsole Reviewed-by: Erik Språng Commit-Queue: Erik Språng Cr-Commit-Position: refs/heads/main@{#39081} --- video/end_to_end_tests/rtp_rtcp_tests.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/video/end_to_end_tests/rtp_rtcp_tests.cc b/video/end_to_end_tests/rtp_rtcp_tests.cc index ea9b3993f5..1ac83c3c36 100644 --- a/video/end_to_end_tests/rtp_rtcp_tests.cc +++ b/video/end_to_end_tests/rtp_rtcp_tests.cc @@ -16,6 +16,7 @@ #include "modules/include/module_common_types_public.h" #include "modules/rtp_rtcp/source/rtp_packet.h" #include "modules/video_coding/codecs/vp8/include/vp8.h" +#include "rtc_base/numerics/sequence_number_unwrapper.h" #include "rtc_base/synchronization/mutex.h" #include "rtc_base/task_queue_for_test.h" #include "test/call_test.h" @@ -268,7 +269,7 @@ void RtpRtcpEndToEndTest::TestRtpStatePreservation( return SEND_PACKET; } - SequenceNumberUnwrapper seq_numbers_unwrapper_; + RtpSequenceNumberUnwrapper seq_numbers_unwrapper_; std::map> last_observed_seq_numbers_; std::map last_observed_timestamp_; std::map ssrc_is_rtx_;