commit | 524f682184ff9af25c17fa2fee22e949e05c1305 | [log] [tgz] |
---|---|---|
author | Alessio Bazzica <alessiob@webrtc.org> | Tue Jan 05 10:28:24 2021 +0100 |
committer | Commit Bot <commit-bot@chromium.org> | Thu Jan 07 11:41:28 2021 +0000 |
tree | e1f784098d694bc78dbccda195c4b7c625635867 | |
parent | b8f32c4a866353c4f149ae64258880a53c8123d2 [diff] [blame] |
SSE2 and NEON kill switches for AGC2 Bug: webrtc:7494 Change-Id: I221b717b5cf3c41b7b637e9234d1e339a0e6c7e5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/199967 Reviewed-by: Sam Zackrisson <saza@webrtc.org> Commit-Queue: Alessio Bazzica <alessiob@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32918}
diff --git a/modules/audio_processing/include/audio_processing.h b/modules/audio_processing/include/audio_processing.h index 802ff9d..5a0e1df 100644 --- a/modules/audio_processing/include/audio_processing.h +++ b/modules/audio_processing/include/audio_processing.h
@@ -365,7 +365,9 @@ int gain_applier_adjacent_speech_frames_threshold = 1; float max_gain_change_db_per_second = 3.f; float max_output_noise_level_dbfs = -50.f; + bool sse2_allowed = true; bool avx2_allowed = true; + bool neon_allowed = true; } adaptive_digital; } gain_controller2;