[cleanup] Fix redundant webrtc name specifier
This CL was uploaded by git cl split.
R=hta@webrtc.org
No-Iwyu: LSC
Bug: webrtc:42232595
Change-Id: Ibcffecf0d1e04b73850501f0f2cb88f39384a79e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/390620
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Auto-Submit: Evan Shrubsole <eshr@webrtc.org>
Commit-Queue: Evan Shrubsole <eshr@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#44584}
diff --git a/video/video_receive_stream2_unittest.cc b/video/video_receive_stream2_unittest.cc
index 61e1872..b19e001 100644
--- a/video/video_receive_stream2_unittest.cc
+++ b/video/video_receive_stream2_unittest.cc
@@ -257,12 +257,10 @@
video_receive_stream_ = nullptr;
}
timing_ = new VCMTiming(&env_.clock(), env_.field_trials());
- video_receive_stream_ =
- std::make_unique<webrtc::internal::VideoReceiveStream2>(
- env_, &fake_call_, kDefaultNumCpuCores, &packet_router_,
- config_.Copy(), &call_stats_, absl::WrapUnique(timing_),
- &nack_periodic_processor_,
- UseMetronome() ? &decode_sync_ : nullptr);
+ video_receive_stream_ = std::make_unique<internal::VideoReceiveStream2>(
+ env_, &fake_call_, kDefaultNumCpuCores, &packet_router_, config_.Copy(),
+ &call_stats_, absl::WrapUnique(timing_), &nack_periodic_processor_,
+ UseMetronome() ? &decode_sync_ : nullptr);
video_receive_stream_->RegisterWithTransport(
&rtp_stream_receiver_controller_);
if (state)
@@ -283,7 +281,7 @@
test::RtcpPacketParser rtcp_packet_parser_;
PacketRouter packet_router_;
RtpStreamReceiverController rtp_stream_receiver_controller_;
- std::unique_ptr<webrtc::internal::VideoReceiveStream2> video_receive_stream_;
+ std::unique_ptr<internal::VideoReceiveStream2> video_receive_stream_;
VCMTiming* timing_;
test::FakeMetronome fake_metronome_;
DecodeSynchronizer decode_sync_;
@@ -595,7 +593,7 @@
}
TEST_P(VideoReceiveStream2Test, PassesRotation) {
- const webrtc::VideoRotation kRotation = webrtc::kVideoRotation_180;
+ const VideoRotation kRotation = kVideoRotation_180;
std::unique_ptr<test::FakeEncodedFrame> test_frame =
test::FakeFrameBuilder()
.Id(0)