OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_DATA_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_DATA_H_ |
| 13 |
| 14 #include "webrtc/typedefs.h" |
| 15 #if defined(WEBRTC_ARCH_X86_FAMILY) |
| 16 #include <emmintrin.h> |
| 17 #endif |
| 18 #include <algorithm> |
| 19 #include <array> |
| 20 |
| 21 #include "webrtc/base/array_view.h" |
| 22 #include "webrtc/modules/audio_processing/aec3/aec3_common.h" |
| 23 |
| 24 namespace webrtc { |
| 25 |
| 26 // Struct that holds imaginary data produced from 128 point real-valued FFTs. |
| 27 struct FftData { |
| 28 // Copies the data in src. |
| 29 void Assign(const FftData& src) { |
| 30 std::copy(src.re.begin(), src.re.end(), re.begin()); |
| 31 std::copy(src.im.begin(), src.im.end(), im.begin()); |
| 32 im[0] = im[kFftLengthBy2] = 0; |
| 33 } |
| 34 |
| 35 // Clears all the imaginary. |
| 36 void Clear() { |
| 37 re.fill(0.f); |
| 38 im.fill(0.f); |
| 39 } |
| 40 |
| 41 // Computes the power spectrum of the data. |
| 42 void Spectrum(Aec3Optimization optimization, |
| 43 std::array<float, kFftLengthBy2Plus1>* power_spectrum) const { |
| 44 RTC_DCHECK(power_spectrum); |
| 45 if (optimization == Aec3Optimization::kNone) { |
| 46 std::transform(re.begin(), re.end(), im.begin(), power_spectrum->begin(), |
| 47 [](float a, float b) { return a * a + b * b; }); |
| 48 } |
| 49 #if defined(WEBRTC_ARCH_X86_FAMILY) |
| 50 if (optimization == Aec3Optimization::kSse2) { |
| 51 constexpr int kNumFourBinBands = kFftLengthBy2 / 4; |
| 52 constexpr int kLimit = kNumFourBinBands * 4; |
| 53 for (size_t k = 0; k < kLimit; k += 4) { |
| 54 const __m128 r = _mm_loadu_ps(&re[k]); |
| 55 const __m128 i = _mm_loadu_ps(&im[k]); |
| 56 const __m128 ii = _mm_mul_ps(i, i); |
| 57 const __m128 rr = _mm_mul_ps(r, r); |
| 58 const __m128 rrii = _mm_add_ps(rr, ii); |
| 59 _mm_storeu_ps(&(*power_spectrum)[k], rrii); |
| 60 } |
| 61 (*power_spectrum)[kFftLengthBy2] = re[kFftLengthBy2] * re[kFftLengthBy2] + |
| 62 im[kFftLengthBy2] * im[kFftLengthBy2]; |
| 63 } |
| 64 #endif |
| 65 } |
| 66 |
| 67 // Copy the data from an interleaved array. |
| 68 void CopyFromPackedArray(const std::array<float, kFftLength>& v) { |
| 69 re[0] = v[0]; |
| 70 re[kFftLengthBy2] = v[1]; |
| 71 im[0] = im[kFftLengthBy2] = 0; |
| 72 for (size_t k = 1, j = 2; k < kFftLengthBy2; ++k) { |
| 73 re[k] = v[j++]; |
| 74 im[k] = v[j++]; |
| 75 } |
| 76 } |
| 77 |
| 78 // Copies the data into an interleaved array. |
| 79 void CopyToPackedArray(std::array<float, kFftLength>* v) const { |
| 80 RTC_DCHECK(v); |
| 81 (*v)[0] = re[0]; |
| 82 (*v)[1] = re[kFftLengthBy2]; |
| 83 for (size_t k = 1, j = 2; k < kFftLengthBy2; ++k) { |
| 84 (*v)[j++] = re[k]; |
| 85 (*v)[j++] = im[k]; |
| 86 } |
| 87 } |
| 88 |
| 89 std::array<float, kFftLengthBy2Plus1> re; |
| 90 std::array<float, kFftLengthBy2Plus1> im; |
| 91 }; |
| 92 |
| 93 } // namespace webrtc |
| 94 |
| 95 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_DATA_H_ |
OLD | NEW |