Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1012)

Unified Diff: webrtc/modules/audio_processing/aec3/suppression_gain.h

Issue 2813823002: Adding new functionality for SIMD optimizations in AEC3 (Closed)
Patch Set: Fixed build error on windows Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/aec3/suppression_gain.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/aec3/suppression_gain.h
diff --git a/webrtc/modules/audio_processing/aec3/suppression_gain.h b/webrtc/modules/audio_processing/aec3/suppression_gain.h
index d0b4114393539d42561436a92c7bbe068a208d23..e4ad3fc71476d4d978115681d4e76dbf0e90a8c1 100644
--- a/webrtc/modules/audio_processing/aec3/suppression_gain.h
+++ b/webrtc/modules/audio_processing/aec3/suppression_gain.h
@@ -18,30 +18,6 @@
#include "webrtc/modules/audio_processing/aec3/aec3_common.h"
namespace webrtc {
-namespace aec3 {
-#if defined(WEBRTC_ARCH_X86_FAMILY)
-
-void ComputeGains_SSE2(
- const std::array<float, kFftLengthBy2Plus1>& nearend_power,
- const std::array<float, kFftLengthBy2Plus1>& residual_echo_power,
- const std::array<float, kFftLengthBy2Plus1>& comfort_noise_power,
- float strong_nearend_margin,
- std::array<float, kFftLengthBy2 - 1>* previous_gain_squared,
- std::array<float, kFftLengthBy2 - 1>* previous_masker,
- std::array<float, kFftLengthBy2Plus1>* gain);
-
-#endif
-
-void ComputeGains(
- const std::array<float, kFftLengthBy2Plus1>& nearend_power,
- const std::array<float, kFftLengthBy2Plus1>& residual_echo_power,
- const std::array<float, kFftLengthBy2Plus1>& comfort_noise_power,
- float strong_nearend_margin,
- std::array<float, kFftLengthBy2 - 1>* previous_gain_squared,
- std::array<float, kFftLengthBy2 - 1>* previous_masker,
- std::array<float, kFftLengthBy2Plus1>* gain);
-
-} // namespace aec3
class SuppressionGain {
public:
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/aec3/suppression_gain.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698