commit | 09a718accde8f6857f3a1e9182a7dc2f6d43bdbb | [log] [tgz] |
---|---|---|
author | Per Åhgren <peah@webrtc.org> | Mon Dec 11 22:28:45 2017 +0100 |
committer | Commit Bot <commit-bot@chromium.org> | Mon Dec 11 22:02:46 2017 +0000 |
tree | 53205d39a872afd9e926726d913cea7bffb58167 | |
parent | c59a576c860a2f9cbbeeaac6fb18ced2c5a59072 [diff] [blame] |
Added the ability to more easily adjust the filter length in AEC3 Bug: webrtc:8609 Change-Id: If060b332993c2c98d7a12608ab31f4da858b8016 Reviewed-on: https://webrtc-review.googlesource.com/28620 Commit-Queue: Per Åhgren <peah@webrtc.org> Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21216}
diff --git a/modules/audio_processing/include/audio_processing.h b/modules/audio_processing/include/audio_processing.h index c353be9..4aeb9f4 100644 --- a/modules/audio_processing/include/audio_processing.h +++ b/modules/audio_processing/include/audio_processing.h
@@ -1158,6 +1158,10 @@ size_t min_echo_path_delay_blocks = 5; } delay; + struct Filter { + size_t length_blocks = 12; + } filter; + struct Erle { float min = 1.f; float max_l = 8.f;