commit | 0aefbf0ec47c018bf2a4cd520c93f72908af2b56 | [log] [tgz] |
---|---|---|
author | Per Åhgren <peah@webrtc.org> | Fri Aug 23 21:29:17 2019 +0200 |
committer | Commit Bot <commit-bot@chromium.org> | Fri Aug 23 20:04:10 2019 +0000 |
tree | 2258f6f885a2a80b573fea585d4abab7d5a1c263 | |
parent | c8626b6072598829e98bf65bc508359b3f8bb9ca [diff] [blame] |
Use the AEC3 high-pass filter for the whole APM This CL removes and replaces the legacy fixed-point high-pass filter in APM with the floating point high-pass filter in AEC3. Bug: webrtc:10907 Change-Id: I88cf8f622ab139e4ffa97f89a72425aa3becfc58 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/150103 Commit-Queue: Per Åhgren <peah@webrtc.org> Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28950}
diff --git a/modules/audio_processing/audio_buffer.h b/modules/audio_processing/audio_buffer.h index b6a41e2..2d136d8 100644 --- a/modules/audio_processing/audio_buffer.h +++ b/modules/audio_processing/audio_buffer.h
@@ -32,6 +32,7 @@ // operate on it in a controlled manner. class AudioBuffer { public: + static const int kSplitBandSize = 160; AudioBuffer(size_t input_rate, size_t input_num_channels, size_t buffer_rate,