blob: f759778a35ad8c7d80d9fe2391f69b924523fbc0 [file] [log] [blame]
andrew@webrtc.org325cff02014-10-01 17:42:18 +00001/*
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#include "common_audio/real_fourier.h"
andrew@webrtc.org325cff02014-10-01 17:42:18 +000012
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "common_audio/real_fourier_ooura.h"
14#include "common_audio/real_fourier_openmax.h"
15#include "common_audio/signal_processing/include/signal_processing_library.h"
16#include "rtc_base/checks.h"
andrew@webrtc.org325cff02014-10-01 17:42:18 +000017
18namespace webrtc {
19
20using std::complex;
21
pkasting25702cb2016-01-08 13:50:27 -080022const size_t RealFourier::kFftBufferAlignment = 32;
andrew@webrtc.org325cff02014-10-01 17:42:18 +000023
kwibergbfefb032016-05-01 14:53:46 -070024std::unique_ptr<RealFourier> RealFourier::Create(int fft_order) {
andrew@webrtc.org04c50982015-03-19 20:06:29 +000025#if defined(RTC_USE_OPENMAX_DL)
kwibergbfefb032016-05-01 14:53:46 -070026 return std::unique_ptr<RealFourier>(new RealFourierOpenmax(fft_order));
andrew@webrtc.org04c50982015-03-19 20:06:29 +000027#else
kwibergbfefb032016-05-01 14:53:46 -070028 return std::unique_ptr<RealFourier>(new RealFourierOoura(fft_order));
andrew@webrtc.org04c50982015-03-19 20:06:29 +000029#endif
andrew@webrtc.org325cff02014-10-01 17:42:18 +000030}
31
Peter Kastingdce40cf2015-08-24 14:52:23 -070032int RealFourier::FftOrder(size_t length) {
henrikg91d6ede2015-09-17 00:24:34 -070033 RTC_CHECK_GT(length, 0U);
Peter Kastingb7e50542015-06-11 12:55:50 -070034 return WebRtcSpl_GetSizeInBits(static_cast<uint32_t>(length - 1));
andrew@webrtc.org04c50982015-03-19 20:06:29 +000035}
36
Peter Kastingdce40cf2015-08-24 14:52:23 -070037size_t RealFourier::FftLength(int order) {
henrikg91d6ede2015-09-17 00:24:34 -070038 RTC_CHECK_GE(order, 0);
Peter Kastingdce40cf2015-08-24 14:52:23 -070039 return static_cast<size_t>(1 << order);
andrew@webrtc.org325cff02014-10-01 17:42:18 +000040}
41
Peter Kastingdce40cf2015-08-24 14:52:23 -070042size_t RealFourier::ComplexLength(int order) {
Peter Kastingf045e4d2015-06-10 21:15:38 -070043 return FftLength(order) / 2 + 1;
andrew@webrtc.org325cff02014-10-01 17:42:18 +000044}
45
46RealFourier::fft_real_scoper RealFourier::AllocRealBuffer(int count) {
47 return fft_real_scoper(static_cast<float*>(
48 AlignedMalloc(sizeof(float) * count, kFftBufferAlignment)));
49}
50
51RealFourier::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.org325cff02014-10-01 17:42:18 +000056} // namespace webrtc
57