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 #include <functional> |
| 15 #include <vector> |
| 16 |
| 17 #include "webrtc/test/gtest.h" |
| 18 |
| 19 namespace webrtc { |
| 20 namespace {} // namespace |
| 21 |
| 22 #if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID) |
| 23 |
| 24 // Verifies that the check for that the provided numbers of Ffts to include in |
| 25 // the spectral sum is equal to the one supported works. |
| 26 TEST(FftBuffer, TooLargeNumberOfSpectralSums) { |
| 27 EXPECT_DEATH(FftBuffer(1, std::vector<size_t>(2, 1)), ""); |
| 28 } |
| 29 |
| 30 TEST(FftBuffer, TooSmallNumberOfSpectralSums) { |
| 31 EXPECT_DEATH(FftBuffer(1, std::vector<size_t>()), ""); |
| 32 } |
| 33 |
| 34 // Verifies that the check for that the provided number of Ffts to to include in |
| 35 // the spectral is feasible works. |
| 36 TEST(FftBuffer, FeasibleNumberOfFftsInSum) { |
| 37 EXPECT_DEATH(FftBuffer(1, std::vector<size_t>(1, 2)), ""); |
| 38 } |
| 39 |
| 40 #endif |
| 41 |
| 42 // Verify the basic usage of the FftBuffer. |
| 43 TEST(FftBuffer, NormalUsage) { |
| 44 constexpr int kBufferSize = 10; |
| 45 FftBuffer buffer(kBufferSize, std::vector<size_t>(1, kBufferSize)); |
| 46 FftData X; |
| 47 std::vector<std::array<float, kFftLengthBy2Plus1>> buffer_ref(kBufferSize); |
| 48 |
| 49 for (int k = 0; k < 30; ++k) { |
| 50 std::array<float, kFftLengthBy2Plus1> X2_sum_ref; |
| 51 X2_sum_ref.fill(0.f); |
| 52 for (size_t j = 0; j < buffer.Buffer().size(); ++j) { |
| 53 const std::array<float, kFftLengthBy2Plus1>& X2 = buffer.Spectrum(j); |
| 54 const std::array<float, kFftLengthBy2Plus1>& X2_ref = buffer_ref[j]; |
| 55 EXPECT_EQ(X2_ref, X2); |
| 56 |
| 57 std::transform(X2_ref.begin(), X2_ref.end(), X2_sum_ref.begin(), |
| 58 X2_sum_ref.begin(), std::plus<float>()); |
| 59 } |
| 60 EXPECT_EQ(X2_sum_ref, buffer.SpectralSum(kBufferSize)); |
| 61 |
| 62 std::array<float, kFftLengthBy2Plus1> X2; |
| 63 X.re.fill(k); |
| 64 X.im.fill(k); |
| 65 X.Spectrum(&X2); |
| 66 buffer.Insert(X); |
| 67 buffer_ref.pop_back(); |
| 68 buffer_ref.insert(buffer_ref.begin(), X2); |
| 69 } |
| 70 } |
| 71 |
| 72 } // namespace webrtc |
OLD | NEW |