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 #include "webrtc/modules/audio_processing/aec3/fft_buffer.h" |
| 12 |
| 13 #include <algorithm> |
| 14 |
| 15 #include "webrtc/base/checks.h" |
| 16 #include "webrtc/modules/audio_processing/aec3/aec3_constants.h" |
| 17 |
| 18 namespace webrtc { |
| 19 |
| 20 FftBuffer::FftBuffer(size_t num_partitions, |
| 21 const std::vector<size_t> num_ffts_for_spectral_sums) |
| 22 : fft_buffer_(num_partitions), |
| 23 spectrum_buffer_(num_partitions, std::array<float, kFftLengthBy2Plus1>()), |
| 24 spectral_sums_(num_ffts_for_spectral_sums.size(), |
| 25 std::array<float, kFftLengthBy2Plus1>()) { |
| 26 // Current implementation only allows a maximum of one spectral sum lengths. |
| 27 RTC_DCHECK_EQ(1, num_ffts_for_spectral_sums.size()); |
| 28 spectral_sums_length_ = num_ffts_for_spectral_sums[0]; |
| 29 RTC_DCHECK_GE(fft_buffer_.size(), spectral_sums_length_); |
| 30 |
| 31 for (auto& sum : spectral_sums_) { |
| 32 sum.fill(0.f); |
| 33 } |
| 34 |
| 35 for (auto& spectrum : spectrum_buffer_) { |
| 36 spectrum.fill(0.f); |
| 37 } |
| 38 |
| 39 for (auto& fft : fft_buffer_) { |
| 40 fft.Clear(); |
| 41 } |
| 42 } |
| 43 |
| 44 FftBuffer::~FftBuffer() = default; |
| 45 |
| 46 void FftBuffer::Insert(const FftData& fft) { |
| 47 // Insert the fft into the buffer. |
| 48 position_ = (position_ - 1 + fft_buffer_.size()) % fft_buffer_.size(); |
| 49 fft_buffer_[position_].Assign(fft); |
| 50 |
| 51 // Compute and insert the spectrum for the FFT into the spectrum buffer. |
| 52 fft.Spectrum(&spectrum_buffer_[position_]); |
| 53 |
| 54 // Pre-compute and cachec the spectral sums. |
| 55 std::copy(spectrum_buffer_[position_].begin(), |
| 56 spectrum_buffer_[position_].end(), spectral_sums_[0].begin()); |
| 57 size_t position = (position_ + 1) % fft_buffer_.size(); |
| 58 for (size_t j = 1; j < spectral_sums_length_; ++j) { |
| 59 const std::array<float, kFftLengthBy2Plus1>& spectrum = |
| 60 spectrum_buffer_[position]; |
| 61 |
| 62 for (size_t k = 0; k < spectral_sums_[0].size(); ++k) { |
| 63 spectral_sums_[0][k] += spectrum[k]; |
| 64 } |
| 65 |
| 66 position = position < (fft_buffer_.size() - 1) ? position + 1 : 0; |
| 67 } |
| 68 } |
| 69 |
| 70 } // namespace webrtc |
OLD | NEW |