webrtc/modules/video_coding
Karl Wiberg 918f50c5d1 Use absl::make_unique and absl::WrapUnique directly
Instead of going through our wrappers in ptr_util.h.

This CL was generated by the following script:

  git grep -l ptr_util | xargs perl -pi -e 's,#include "rtc_base/ptr_util.h",#include "absl/memory/memory.h",'
  git grep -l MakeUnique | xargs perl -pi -e 's,\b(rtc::)?MakeUnique\b,absl::make_unique,g'
  git grep -l WrapUnique | xargs perl -pi -e 's,\b(rtc::)?WrapUnique\b,absl::WrapUnique,g'
  git checkout -- rtc_base/ptr_util{.h,_unittest.cc}
  git cl format

Followed by manually adding dependencies on
//third_party/abseil-cpp/absl/memory until `gn check` stopped
complaining.

Bug: webrtc:9473
Change-Id: I89ccd363f070479b8c431eb2c3d404a46eaacc1c
Reviewed-on: https://webrtc-review.googlesource.com/86600
Commit-Queue: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23850}
2018-07-05 10:59:49 +00:00
..
codecs Use absl::make_unique and absl::WrapUnique directly 2018-07-05 10:59:49 +00:00
include Generalize SimulcastEncoderAdapter, use for H264 & VP8. 2018-06-21 15:57:43 +00:00
test Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
utility Add experimental shortened 2-temporal-layer setting 2018-07-04 09:25:21 +00:00
BUILD.gn Use absl::make_unique and absl::WrapUnique directly 2018-07-05 10:59:49 +00:00
codec_timer.cc Fix chromium warnings for SdpVideoFormat. 2018-03-27 08:11:21 +00:00
codec_timer.h Fix chromium warnings for SdpVideoFormat. 2018-03-27 08:11:21 +00:00
decoder_database.cc Remove unused methods in VCMDecoderDataBase. 2018-06-07 08:46:57 +00:00
decoder_database.h Remove unused methods in VCMDecoderDataBase. 2018-06-07 08:46:57 +00:00
decoding_state.cc Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
decoding_state.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
decoding_state_unittest.cc Delete enum RtpVideoCodecTypes, replaced with VideoCodecType. 2018-06-04 11:53:17 +00:00
DEPS Prepare VideoProcessor for async simulcast support. 2018-03-08 17:41:13 +00:00
encoded_frame.cc Delete unused copy constructors for VCMEncodedFrame and VCMFrameBuffer. 2018-06-26 14:34:15 +00:00
encoded_frame.h Delete unused copy constructors for VCMEncodedFrame and VCMFrameBuffer. 2018-06-26 14:34:15 +00:00
encoder_database.cc Delete RTP-specific values from the VideoCodecType enum. 2018-06-07 07:49:27 +00:00
encoder_database.h Delete payload_type from VCMEncoderDatabase and vcm::VideoSender. 2018-03-16 13:43:01 +00:00
fec_controller_default.cc Revert "Revert "Enables PeerConnectionFactory using external fec controller"" 2018-02-20 12:41:55 +00:00
fec_controller_default.h Revert "Revert "Enables PeerConnectionFactory using external fec controller"" 2018-02-20 12:41:55 +00:00
fec_controller_unittest.cc Make fec controller plug-able. 2018-01-22 11:48:16 +00:00
fec_rate_table.h Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
frame_buffer.cc Delete unused copy constructors for VCMEncodedFrame and VCMFrameBuffer. 2018-06-26 14:34:15 +00:00
frame_buffer.h Delete unused copy constructors for VCMEncodedFrame and VCMFrameBuffer. 2018-06-26 14:34:15 +00:00
frame_buffer2.cc Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
frame_buffer2.h Fix chromium warnings for SdpVideoFormat. 2018-03-27 08:11:21 +00:00
frame_buffer2_unittest.cc Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
frame_object.cc Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
frame_object.h Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
generic_decoder.cc Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
generic_decoder.h Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
generic_encoder.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
generic_encoder.h Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00
generic_encoder_unittest.cc Cleanup webrtc:: namespace from leaked TimingFrameFlags 2018-06-05 13:52:04 +00:00
h264_sprop_parameter_sets.cc Delete unneeded includes of basictypes.h. 2018-05-21 19:35:08 +00:00
h264_sprop_parameter_sets.h Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
h264_sprop_parameter_sets_unittest.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
h264_sps_pps_tracker.cc Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00
h264_sps_pps_tracker.h Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
h264_sps_pps_tracker_unittest.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
histogram.cc Move sequence_number_utils.h to rtc_base/ 2017-10-25 12:33:57 +00:00
histogram.h Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
histogram_unittest.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
inter_frame_delay.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
inter_frame_delay.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
internal_defines.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
jitter_buffer.cc Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
jitter_buffer.h Moved NackModule and VCMPacket to their own targets 2018-06-15 09:00:25 +00:00
jitter_buffer_common.h Moved NackModule and VCMPacket to their own targets 2018-06-15 09:00:25 +00:00
jitter_buffer_unittest.cc Add ParsedPayload::video_header() accessor. 2018-07-04 09:31:21 +00:00
jitter_estimator.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
jitter_estimator.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
jitter_estimator_tests.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
media_opt_util.cc Add experimental shortened 2-temporal-layer setting 2018-07-04 09:25:21 +00:00
media_opt_util.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
media_optimization.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
media_optimization.h Revert "Revert "Enables PeerConnectionFactory using external fec controller"" 2018-02-20 12:41:55 +00:00
nack_fec_tables.h Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
nack_module.cc Simplify RtpVideoStreamReceiver::NotifyReceiverOfFecPacket. 2018-03-23 14:34:48 +00:00
nack_module.h Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
nack_module_unittest.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
OWNERS Add philipel to modules/video_coding/OWNERS. 2018-05-17 10:14:31 +00:00
packet.cc Add ParsedPayload::video_header() accessor. 2018-07-04 09:31:21 +00:00
packet.h Moved NackModule and VCMPacket to their own targets 2018-06-15 09:00:25 +00:00
packet_buffer.cc Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00
packet_buffer.h Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00
qp_parser.cc Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
qp_parser.h Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
receiver.cc Revert "Add Timestamp accessor methods to the EncodedImage class." 2018-06-26 11:52:45 +00:00
receiver.h Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
receiver_unittest.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
rtp_frame_reference_finder.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
rtp_frame_reference_finder.h Remove non-implemented function signatures from RtpFrameReferenceFinder. 2018-07-04 09:07:22 +00:00
rtp_frame_reference_finder_unittest.cc Remove extra reference from GOF. 2018-05-09 18:18:43 +00:00
rtt_filter.cc Fix typo in VCMRttFilter 2018-01-26 10:59:56 +00:00
rtt_filter.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
session_info.cc Moved NackModule and VCMPacket to their own targets 2018-06-15 09:00:25 +00:00
session_info.h Delete unused methods in VCMFrameBuffer and VCMSessionInfo. 2018-06-11 18:39:50 +00:00
session_info_unittest.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
timestamp_map.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
timestamp_map.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
timing.cc Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00
timing.h Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00
timing_unittest.cc Remove unused functions in VCMTiming. 2018-01-17 14:47:10 +00:00
video_codec_initializer.cc Generalize SimulcastEncoderAdapter, use for H264 & VP8. 2018-06-21 15:57:43 +00:00
video_codec_initializer_unittest.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
video_coding_defines.cc Fix chromium warnings for SdpVideoFormat. 2018-03-27 08:11:21 +00:00
video_coding_impl.cc Generalize SimulcastEncoderAdapter, use for H264 & VP8. 2018-06-21 15:57:43 +00:00
video_coding_impl.h Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
video_packet_buffer_unittest.cc Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00
video_receiver.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
video_receiver_unittest.cc Add ParsedPayload::video_header() accessor. 2018-07-04 09:31:21 +00:00
video_sender.cc Generalize SimulcastEncoderAdapter, use for H264 & VP8. 2018-06-21 15:57:43 +00:00
video_sender_unittest.cc Add experimental shortened 2-temporal-layer setting 2018-07-04 09:25:21 +00:00