Index: webrtc/modules/audio_processing/aec3/matched_filter.h |
diff --git a/webrtc/modules/audio_processing/aec3/matched_filter.h b/webrtc/modules/audio_processing/aec3/matched_filter.h |
index 3e09d4b97157ccfa64f6ccf8c3e6725507276755..438ced3d42b927b0ec1446fc91871fe28f622030 100644 |
--- a/webrtc/modules/audio_processing/aec3/matched_filter.h |
+++ b/webrtc/modules/audio_processing/aec3/matched_filter.h |
@@ -17,10 +17,32 @@ |
#include "webrtc/base/constructormagic.h" |
#include "webrtc/base/optional.h" |
-#include "webrtc/modules/audio_processing/aec3/aec3_constants.h" |
+#include "webrtc/modules/audio_processing/aec3/aec3_common.h" |
namespace webrtc { |
+#if defined(WEBRTC_ARCH_X86_FAMILY) |
+ |
+// Filter core for the matched filter that is optimized for SSE2. |
+void MatchedFilterCore_SSE2(size_t x_start_index, |
+ float x2_sum_threshold, |
+ rtc::ArrayView<const float> x, |
+ rtc::ArrayView<const float> y, |
+ rtc::ArrayView<float> h, |
+ bool* filters_updated, |
+ float* error_sum); |
+ |
+#endif |
+ |
+// Filter core for the matched filter. |
+void MatchedFilterCore(size_t x_start_index, |
+ float x2_sum_threshold, |
+ rtc::ArrayView<const float> x, |
+ rtc::ArrayView<const float> y, |
+ rtc::ArrayView<float> h, |
+ bool* filters_updated, |
+ float* error_sum); |
+ |
class ApmDataDumper; |
// Produces recursively updated cross-correlation estimates for several signal |
@@ -41,6 +63,7 @@ class MatchedFilter { |
}; |
MatchedFilter(ApmDataDumper* data_dumper, |
+ Aec3Optimization optimization, |
size_t window_size_sub_blocks, |
int num_matched_filters, |
size_t alignment_shift_sub_blocks); |
@@ -71,6 +94,7 @@ class MatchedFilter { |
}; |
ApmDataDumper* const data_dumper_; |
+ const Aec3Optimization optimization_; |
const size_t filter_intra_lag_shift_; |
std::vector<std::vector<float>> filters_; |
std::vector<LagEstimate> lag_estimates_; |