andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "common_audio/real_fourier.h" |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 12 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 13 | #include "common_audio/real_fourier_ooura.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 14 | #include "common_audio/signal_processing/include/signal_processing_library.h" |
| 15 | #include "rtc_base/checks.h" |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 16 | |
| 17 | namespace webrtc { |
| 18 | |
| 19 | using std::complex; |
| 20 | |
pkasting | 25702cb | 2016-01-08 13:50:27 -0800 | [diff] [blame] | 21 | const size_t RealFourier::kFftBufferAlignment = 32; |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 22 | |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 23 | std::unique_ptr<RealFourier> RealFourier::Create(int fft_order) { |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 24 | return std::unique_ptr<RealFourier>(new RealFourierOoura(fft_order)); |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 25 | } |
| 26 | |
Peter Kasting | dce40cf | 2015-08-24 14:52:23 -0700 | [diff] [blame] | 27 | int RealFourier::FftOrder(size_t length) { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 28 | RTC_CHECK_GT(length, 0U); |
Peter Kasting | b7e5054 | 2015-06-11 12:55:50 -0700 | [diff] [blame] | 29 | return WebRtcSpl_GetSizeInBits(static_cast<uint32_t>(length - 1)); |
andrew@webrtc.org | 04c5098 | 2015-03-19 20:06:29 +0000 | [diff] [blame] | 30 | } |
| 31 | |
Peter Kasting | dce40cf | 2015-08-24 14:52:23 -0700 | [diff] [blame] | 32 | size_t RealFourier::FftLength(int order) { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 33 | RTC_CHECK_GE(order, 0); |
Mirko Bonadei | f9c2952 | 2018-07-04 11:47:33 +0200 | [diff] [blame] | 34 | return size_t{1} << order; |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 35 | } |
| 36 | |
Peter Kasting | dce40cf | 2015-08-24 14:52:23 -0700 | [diff] [blame] | 37 | size_t RealFourier::ComplexLength(int order) { |
Peter Kasting | f045e4d | 2015-06-10 21:15:38 -0700 | [diff] [blame] | 38 | return FftLength(order) / 2 + 1; |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | RealFourier::fft_real_scoper RealFourier::AllocRealBuffer(int count) { |
| 42 | return fft_real_scoper(static_cast<float*>( |
| 43 | AlignedMalloc(sizeof(float) * count, kFftBufferAlignment))); |
| 44 | } |
| 45 | |
| 46 | RealFourier::fft_cplx_scoper RealFourier::AllocCplxBuffer(int count) { |
| 47 | return fft_cplx_scoper(static_cast<complex<float>*>( |
| 48 | AlignedMalloc(sizeof(complex<float>) * count, kFftBufferAlignment))); |
| 49 | } |
| 50 | |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 51 | } // namespace webrtc |