webrtc/modules/audio_processing/agc2
Mirko Bonadei 317a1f09ed Use std::make_unique instead of absl::make_unique.
WebRTC is now using C++14 so there is no need to use the Abseil version
of std::make_unique.

This CL has been created with the following steps:

git grep -l absl::make_unique | sort | uniq > /tmp/make_unique.txt
git grep -l absl::WrapUnique | sort | uniq > /tmp/wrap_unique.txt
git grep -l "#include <memory>" | sort | uniq > /tmp/memory.txt

diff --new-line-format="" --unchanged-line-format="" \
  /tmp/make_unique.txt /tmp/wrap_unique.txt | sort | \
  uniq > /tmp/only_make_unique.txt
diff --new-line-format="" --unchanged-line-format="" \
  /tmp/only_make_unique.txt /tmp/memory.txt | \
  xargs grep -l "absl/memory" > /tmp/add-memory.txt

git grep -l "\babsl::make_unique\b" | \
  xargs sed -i "s/\babsl::make_unique\b/std::make_unique/g"

git checkout PRESUBMIT.py abseil-in-webrtc.md

cat /tmp/add-memory.txt | \
  xargs sed -i \
  's/#include "absl\/memory\/memory.h"/#include <memory>/g'
git cl format
# Manual fix order of the new inserted #include <memory>

cat /tmp/only_make_unique | xargs grep -l "#include <memory>" | \
  xargs sed -i '/#include "absl\/memory\/memory.h"/d'

git ls-files | grep BUILD.gn | \
  xargs sed -i '/\/\/third_party\/abseil-cpp\/absl\/memory/d'

python tools_webrtc/gn_check_autofix.py \
  -m tryserver.webrtc -b linux_rel

# Repead the gn_check_autofix step for other platforms

git ls-files | grep BUILD.gn | \
  xargs sed -i 's/absl\/memory:memory/absl\/memory/g'
git cl format

Bug: webrtc:10945
Change-Id: I3fe28ea80f4dd3ba3cf28effd151d5e1f19aff89
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153221
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Alessio Bazzica <alessiob@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29209}
2019-09-17 15:47:29 +00:00
..
rnn_vad Use std::make_unique instead of absl::make_unique. 2019-09-17 15:47:29 +00:00
adaptive_agc.cc AGC2: adding level estimation option (RMS or peak-based). 2018-11-13 14:32:13 +00:00
adaptive_agc.h AGC2: adding level estimation option (RMS or peak-based). 2018-11-13 14:32:13 +00:00
adaptive_digital_gain_applier.cc [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
adaptive_digital_gain_applier.h Reduce digital adaptive AGC2 gain in some situations. 2018-10-02 08:34:10 +00:00
adaptive_digital_gain_applier_unittest.cc Reduce digital adaptive AGC2 gain in some situations. 2018-10-02 08:34:10 +00:00
adaptive_mode_level_estimator.cc AGC2: adding level estimation option (RMS or peak-based). 2018-11-13 14:32:13 +00:00
adaptive_mode_level_estimator.h AGC2: adding level estimation option (RMS or peak-based). 2018-11-13 14:32:13 +00:00
adaptive_mode_level_estimator_agc.cc [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
adaptive_mode_level_estimator_agc.h [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
adaptive_mode_level_estimator_unittest.cc Lower gain parameters for AGC2. 2018-10-05 09:55:25 +00:00
agc2_common.cc Format almost everything. 2019-07-08 13:45:15 +00:00
agc2_common.h Re-tuning of VAD in AGC2. 2018-12-10 14:47:29 +00:00
agc2_testing_common.cc Fixed Digital mode of AGC2 implementation finished. 2018-02-20 15:59:25 +00:00
agc2_testing_common.h Delete unneeded includes of basictypes.h. 2018-05-21 19:35:08 +00:00
agc2_testing_common_unittest.cc Format almost everything. 2019-07-08 13:45:15 +00:00
biquad_filter.cc [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
biquad_filter.h (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries 2019-01-11 17:11:39 +00:00
biquad_filter_unittest.cc AGC2 RNN VAD: Feature extraction. 2018-05-15 10:02:20 +00:00
BUILD.gn Use std::make_unique instead of absl::make_unique. 2019-09-17 15:47:29 +00:00
compute_interpolated_gain_curve.cc AGC2 Limiter class renamed. 2018-10-23 15:20:52 +00:00
compute_interpolated_gain_curve.h Fixed Digital mode of AGC2 implementation finished. 2018-02-20 15:59:25 +00:00
down_sampler.cc Format almost everything. 2019-07-08 13:45:15 +00:00
down_sampler.h (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries 2019-01-11 17:11:39 +00:00
fixed_digital_level_estimator.cc [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
fixed_digital_level_estimator.h (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries 2019-01-11 17:11:39 +00:00
fixed_digital_level_estimator_unittest.cc Fixed Digital mode of AGC2 implementation finished. 2018-02-20 15:59:25 +00:00
fixed_gain_controller.cc AGC2: renaming GainCurveApplier to Limiter. 2018-10-30 16:00:18 +00:00
gain_applier.cc [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
gain_applier.h webrtc: Remove semicolons. 2019-02-20 16:02:59 +00:00
gain_applier_unittest.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
interpolated_gain_curve.cc Format almost everything. 2019-07-08 13:45:15 +00:00
interpolated_gain_curve.h Format almost everything. 2019-07-08 13:45:15 +00:00
interpolated_gain_curve_unittest.cc Format almost everything. 2019-07-08 13:45:15 +00:00
limiter.cc Fix AGC2 fixed-adaptive gain controllers order. 2018-11-01 20:35:36 +00:00
limiter.h (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries 2019-01-11 17:11:39 +00:00
limiter_db_gain_curve.cc AGC2 Limiter class renamed. 2018-10-23 15:20:52 +00:00
limiter_db_gain_curve.h AGC2 Limiter class renamed. 2018-10-23 15:20:52 +00:00
limiter_db_gain_curve_unittest.cc AGC2 Limiter class renamed. 2018-10-23 15:20:52 +00:00
limiter_unittest.cc AGC2: renaming GainCurveApplier to Limiter. 2018-10-30 16:00:18 +00:00
noise_level_estimator.cc Format almost everything. 2019-07-08 13:45:15 +00:00
noise_level_estimator.h (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries 2019-01-11 17:11:39 +00:00
noise_level_estimator_unittest.cc Noise level estimation for AGC2. 2018-04-04 18:23:55 +00:00
noise_spectrum_estimator.cc Format almost everything. 2019-07-08 13:45:15 +00:00
noise_spectrum_estimator.h (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries 2019-01-11 17:11:39 +00:00
saturation_protector.cc Make the extra seturation margin configurable. 2018-11-01 15:12:11 +00:00
saturation_protector.h Make the extra seturation margin configurable. 2018-11-01 15:12:11 +00:00
saturation_protector_unittest.cc Lower gain parameters for AGC2. 2018-10-05 09:55:25 +00:00
signal_classifier.cc [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
signal_classifier.h (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries 2019-01-11 17:11:39 +00:00
signal_classifier_unittest.cc Noise level estimation for AGC2. 2018-04-04 18:23:55 +00:00
vad_with_level.cc Qualify cmath function calls 2019-05-10 09:00:54 +00:00
vad_with_level.h [Cleanup] Add missing #include. Remove useless ones. 2018-10-23 11:32:56 +00:00
vad_with_level_unittest.cc AGC2: adding level estimation option (RMS or peak-based). 2018-11-13 14:32:13 +00:00
vector_float_frame.cc Add FixedGainController and move GainController2 in APM. 2018-02-16 10:56:38 +00:00
vector_float_frame.h AGC2-fixed-digital: Level Estimator 2018-02-16 13:55:18 +00:00