From faaa57b7b9cfc1bc5bd6d2313de6e521892d855c Mon Sep 17 00:00:00 2001 From: philipel Date: Mon, 3 Oct 2022 14:53:20 +0200 Subject: [PATCH] In video_replay.cc, remove unnecessay webrtc:: qualifiers. Bug: webrtc:14508 Change-Id: Ib15baa0dc4a017143db37fa7902906e65207c582 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/277780 Reviewed-by: Mirko Bonadei Commit-Queue: Philip Eliasson Cr-Commit-Position: refs/heads/main@{#38276} --- rtc_tools/video_replay.cc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/rtc_tools/video_replay.cc b/rtc_tools/video_replay.cc index e288da5c11..956f6d9400 100644 --- a/rtc_tools/video_replay.cc +++ b/rtc_tools/video_replay.cc @@ -348,8 +348,7 @@ std::unique_ptr ConfigureFromFlags( if (absl::GetFlag(FLAGS_flexfec_payload_type) != -1) { receive_config.rtp.protected_by_flexfec = true; - webrtc::FlexfecReceiveStream::Config flexfec_config( - &(stream_state->transport)); + FlexfecReceiveStream::Config flexfec_config(&(stream_state->transport)); flexfec_config.payload_type = absl::GetFlag(FLAGS_flexfec_payload_type); flexfec_config.protected_media_ssrcs.push_back(absl::GetFlag(FLAGS_ssrc)); flexfec_config.rtp.remote_ssrc = absl::GetFlag(FLAGS_ssrc_flexfec); @@ -437,8 +436,7 @@ class RtpReplayer final { : replay_config_path_(replay_config_path), rtp_dump_path_(rtp_dump_path), field_trials_(std::move(field_trials)), - task_queue_factory_( - webrtc::CreateDefaultTaskQueueFactory(field_trials_.get())), + task_queue_factory_(CreateDefaultTaskQueueFactory(field_trials_.get())), worker_thread_(std::make_unique( task_queue_factory_->CreateTaskQueue( "worker_thread", @@ -571,7 +569,7 @@ class RtpReplayer final { const std::string replay_config_path_; const std::string rtp_dump_path_; - webrtc::RtcEventLogNull event_log_; + RtcEventLogNull event_log_; std::unique_ptr field_trials_; std::unique_ptr task_queue_factory_; std::unique_ptr worker_thread_;