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_BUFFER_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_BUFFER_H_ |
| 13 |
| 14 #include <memory> |
| 15 #include <vector> |
| 16 |
| 17 #include "webrtc/base/array_view.h" |
| 18 #include "webrtc/base/constructormagic.h" |
| 19 #include "webrtc/modules/audio_processing/aec3/fft_data.h" |
| 20 |
| 21 namespace webrtc { |
| 22 |
| 23 // Provides a circular buffer for 128 point real-valued FFT data. |
| 24 class FftBuffer { |
| 25 public: |
| 26 // The constructor takes as parameters the size of the buffer, as well as a |
| 27 // vector containing the number of FFTs that will be included in the spectral |
| 28 // sums in the call to SpectralSum. |
| 29 FftBuffer(size_t size, const std::vector<size_t> num_ffts_for_spectral_sums); |
| 30 ~FftBuffer(); |
| 31 |
| 32 // Insert an FFT into the buffer. |
| 33 void Insert(const FftData& fft); |
| 34 |
| 35 // Get the spectrum from one of the FFTs in the buffer |
| 36 const std::array<float, kFftLengthBy2Plus1>& Spectrum( |
| 37 size_t buffer_offset_ffts) const { |
| 38 return spectrum_buffer_[(position_ + buffer_offset_ffts) % |
| 39 fft_buffer_.size()]; |
| 40 } |
| 41 |
| 42 // Returns the sum of the spectrums for a certain number of FFTs. |
| 43 const std::array<float, kFftLengthBy2Plus1>& SpectralSum( |
| 44 size_t num_ffts) const { |
| 45 RTC_DCHECK_EQ(spectral_sums_length_, num_ffts); |
| 46 return spectral_sums_[0]; |
| 47 } |
| 48 |
| 49 // Returns the circular buffer. |
| 50 rtc::ArrayView<const FftData> Buffer() const { return fft_buffer_; } |
| 51 |
| 52 // Returns the current position in the circular buffer |
| 53 size_t Position() const { return position_; } |
| 54 |
| 55 private: |
| 56 std::vector<FftData> fft_buffer_; |
| 57 std::vector<std::array<float, kFftLengthBy2Plus1>> spectrum_buffer_; |
| 58 size_t spectral_sums_length_; |
| 59 std::vector<std::array<float, kFftLengthBy2Plus1>> spectral_sums_; |
| 60 size_t position_ = 0; |
| 61 |
| 62 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(FftBuffer); |
| 63 }; |
| 64 |
| 65 } // namespace webrtc |
| 66 |
| 67 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_FFT_BUFFER_H_ |
OLD | NEW |