Chromium Code Reviews| Index: webrtc/modules/audio_processing/aec3/fft_data.h |
| diff --git a/webrtc/modules/audio_processing/aec3/fft_data.h b/webrtc/modules/audio_processing/aec3/fft_data.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..317be720b80fc4f4164eaf99e1b1ae981a9b5ede |
| --- /dev/null |
| +++ b/webrtc/modules/audio_processing/aec3/fft_data.h |
| @@ -0,0 +1,70 @@ |
| +/* |
| + * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| + * |
| + * Use of this source code is governed by a BSD-style license |
| + * that can be found in the LICENSE file in the root of the source |
| + * tree. An additional intellectual property rights grant can be found |
| + * in the file PATENTS. All contributing project authors may |
| + * be found in the AUTHORS file in the root of the source tree. |
| + */ |
| + |
| +#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_DATA_H_ |
| +#define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_DATA_H_ |
| + |
| +#include <algorithm> |
| +#include <array> |
| + |
| +#include "webrtc/base/array_view.h" |
| +#include "webrtc/modules/audio_processing/aec3/aec3_constants.h" |
| + |
| +namespace webrtc { |
| + |
| +// Struct that holds imaginary data produced from 128 point real-valued FFTs. |
| +struct FftData { |
| + // Copies the data in src. |
| + void Assign(const FftData& src) { |
| + std::copy(src.re.begin(), src.re.end(), re.begin()); |
| + std::copy(src.im.begin(), src.im.end(), im.begin()); |
| + im[0] = im[kFftLengthBy2] = 0; |
| + } |
| + |
| + // Clears all the imaginary. |
| + void Clear() { |
| + re.fill(0.f); |
| + im.fill(0.f); |
| + } |
| + |
| + // Computes the power spectrum of the data. |
| + void Spectrum(std::array<float, kFftLengthBy2Plus1>* power_spectrum) const { |
| + std::transform(re.begin(), re.end(), im.begin(), power_spectrum->begin(), |
| + [](float a, float b) { return a * a + b * b; }); |
| + } |
| + |
| + // Copy the data from an interlieved array. |
|
aleloi
2017/02/09 17:02:59
interlieved -> interleaved (here and in some other
peah-webrtc
2017/02/20 07:37:17
Done.
|
| + void CopyFromPackedArray(const std::array<float, kFftLength>& v) { |
| + re[0] = v[0]; |
| + re[kFftLengthBy2] = v[1]; |
| + im[0] = im[kFftLengthBy2] = 0; |
| + for (size_t k = 1, j = 2; k < kFftLengthBy2; ++k) { |
| + re[k] = v[j++]; |
| + im[k] = v[j++]; |
| + } |
| + } |
| + |
| + // Copies the data into an interlieved array. |
| + void CopyToPackedArray(std::array<float, kFftLength>* v) const { |
| + (*v)[0] = re[0]; |
| + (*v)[1] = re[kFftLengthBy2]; |
| + for (size_t k = 1, j = 2; k < kFftLengthBy2; ++k) { |
| + (*v)[j++] = re[k]; |
| + (*v)[j++] = im[k]; |
| + } |
| + } |
| + |
| + std::array<float, kFftLengthBy2Plus1> re; |
| + std::array<float, kFftLengthBy2Plus1> im; |
| +}; |
| + |
| +} // namespace webrtc |
| + |
| +#endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_DATA_H_ |