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 | |
| 11 | #include "webrtc/common_audio/real_fourier.h" |
| 12 | |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 13 | #include "webrtc/base/checks.h" |
andrew@webrtc.org | 04c5098 | 2015-03-19 20:06:29 +0000 | [diff] [blame] | 14 | #include "webrtc/common_audio/real_fourier_ooura.h" |
| 15 | #include "webrtc/common_audio/real_fourier_openmax.h" |
| 16 | #include "webrtc/common_audio/signal_processing/include/spl_inl.h" |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 17 | |
| 18 | namespace webrtc { |
| 19 | |
| 20 | using std::complex; |
| 21 | |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 22 | const int RealFourier::kFftBufferAlignment = 32; |
| 23 | |
andrew@webrtc.org | 04c5098 | 2015-03-19 20:06:29 +0000 | [diff] [blame] | 24 | rtc::scoped_ptr<RealFourier> RealFourier::Create(int fft_order) { |
| 25 | #if defined(RTC_USE_OPENMAX_DL) |
| 26 | return rtc::scoped_ptr<RealFourier>(new RealFourierOpenmax(fft_order)); |
| 27 | #else |
| 28 | return rtc::scoped_ptr<RealFourier>(new RealFourierOoura(fft_order)); |
| 29 | #endif |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | int RealFourier::FftOrder(int length) { |
andrew@webrtc.org | 04c5098 | 2015-03-19 20:06:29 +0000 | [diff] [blame] | 33 | CHECK_GT(length, 0); |
| 34 | return WebRtcSpl_GetSizeInBits(length - 1); |
| 35 | } |
| 36 | |
| 37 | int RealFourier::FftLength(int order) { |
| 38 | CHECK_GE(order, 0); |
| 39 | return 1 << order; |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | int RealFourier::ComplexLength(int order) { |
Peter Kasting | f045e4d | 2015-06-10 21:15:38 -0700 | [diff] [blame^] | 43 | return FftLength(order) / 2 + 1; |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | RealFourier::fft_real_scoper RealFourier::AllocRealBuffer(int count) { |
| 47 | return fft_real_scoper(static_cast<float*>( |
| 48 | AlignedMalloc(sizeof(float) * count, kFftBufferAlignment))); |
| 49 | } |
| 50 | |
| 51 | RealFourier::fft_cplx_scoper RealFourier::AllocCplxBuffer(int count) { |
| 52 | return fft_cplx_scoper(static_cast<complex<float>*>( |
| 53 | AlignedMalloc(sizeof(complex<float>) * count, kFftBufferAlignment))); |
| 54 | } |
| 55 | |
andrew@webrtc.org | 325cff0 | 2014-10-01 17:42:18 +0000 | [diff] [blame] | 56 | } // namespace webrtc |
| 57 | |