commit | c04242548c41a9e1c93e5f7fdb6ee65c97eef199 | [log] [tgz] |
---|---|---|
author | Per Åhgren <peah@webrtc.org> | Tue Dec 10 12:04:15 2019 |
committer | Commit Bot <commit-bot@chromium.org> | Wed Dec 18 16:01:24 2019 |
tree | 9082b02c5ccb49e9a2e4c39c280f3994be5bcdf9 | |
parent | 26335a94de600fdb0b5fe4746be8d652d78f8bad [diff] [blame] |
Make the high-pass filter operate in full-band This CL moves the high-pass filter to run in the full-band domain instead of the split-band domain. Bug: webrtc:11193 Change-Id: Ie61f4a80afda11236ecbb1ad544bbd0350c7bbfd Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/161453 Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Commit-Queue: Per Åhgren <peah@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30112}
diff --git a/modules/audio_processing/include/audio_processing.h b/modules/audio_processing/include/audio_processing.h index 2f67919..5ab591b 100644 --- a/modules/audio_processing/include/audio_processing.h +++ b/modules/audio_processing/include/audio_processing.h
@@ -224,6 +224,7 @@ struct HighPassFilter { bool enabled = false; + bool apply_in_full_band = true; } high_pass_filter; struct EchoCanceller {