1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/* Copyright (C) 2013 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#if ENABLE(WEB_AUDIO)
#if OS(ANDROID) && USE(WEBAUDIO_OPENMAX_DL_FFT)
#include "platform/audio/FFTFrame.h"
#include "platform/audio/AudioArray.h"
#include "wtf/MathExtras.h"
#include <dl/sp/api/armSP.h>
#include <dl/sp/api/omxSP.h>
namespace WebCore {
#if ASSERT_ENABLED
const unsigned kMaxFFTPow2Size = 15;
#endif
// Normal constructor: allocates for a given fftSize.
FFTFrame::FFTFrame(unsigned fftSize)
: m_FFTSize(fftSize)
, m_log2FFTSize(static_cast<unsigned>(log2(fftSize)))
, m_forwardContext(0)
, m_inverseContext(0)
, m_complexData(fftSize)
, m_realData(fftSize / 2)
, m_imagData(fftSize / 2)
{
// We only allow power of two.
ASSERT(1UL << m_log2FFTSize == m_FFTSize);
m_forwardContext = contextForSize(m_log2FFTSize);
m_inverseContext = contextForSize(m_log2FFTSize);
}
// Creates a blank/empty frame (interpolate() must later be called).
FFTFrame::FFTFrame()
: m_FFTSize(0)
, m_log2FFTSize(0)
, m_forwardContext(0)
, m_inverseContext(0)
{
}
// Copy constructor.
FFTFrame::FFTFrame(const FFTFrame& frame)
: m_FFTSize(frame.m_FFTSize)
, m_log2FFTSize(frame.m_log2FFTSize)
, m_forwardContext(0)
, m_inverseContext(0)
, m_complexData(frame.m_FFTSize)
, m_realData(frame.m_FFTSize / 2)
, m_imagData(frame.m_FFTSize / 2)
{
m_forwardContext = contextForSize(m_log2FFTSize);
m_inverseContext = contextForSize(m_log2FFTSize);
// Copy/setup frame data.
unsigned nbytes = sizeof(float) * (m_FFTSize / 2);
memcpy(realData(), frame.realData(), nbytes);
memcpy(imagData(), frame.imagData(), nbytes);
}
void FFTFrame::initialize()
{
}
void FFTFrame::cleanup()
{
}
FFTFrame::~FFTFrame()
{
if (m_forwardContext)
free(m_forwardContext);
if (m_inverseContext)
free(m_inverseContext);
}
void FFTFrame::doFFT(const float* data)
{
ASSERT(m_forwardContext);
if (m_forwardContext) {
AudioFloatArray complexFFT(m_FFTSize + 2);
omxSP_FFTFwd_RToCCS_F32(data, complexFFT.data(), m_forwardContext);
unsigned len = m_FFTSize / 2;
// Split FFT data into real and imaginary arrays.
const float* c = complexFFT.data();
float* real = m_realData.data();
float* imag = m_imagData.data();
for (unsigned k = 1; k < len; ++k) {
int index = 2 * k;
real[k] = c[index];
imag[k] = c[index + 1];
}
real[0] = c[0];
imag[0] = c[m_FFTSize];
}
}
void FFTFrame::doInverseFFT(float* data)
{
ASSERT(m_inverseContext);
if (m_inverseContext) {
AudioFloatArray fftDataArray(m_FFTSize + 2);
unsigned len = m_FFTSize / 2;
// Pack the real and imaginary data into the complex array format
float* fftData = fftDataArray.data();
const float* real = m_realData.data();
const float* imag = m_imagData.data();
for (unsigned k = 1; k < len; ++k) {
int index = 2 * k;
fftData[index] = real[k];
fftData[index + 1] = imag[k];
}
fftData[0] = real[0];
fftData[1] = 0;
fftData[m_FFTSize] = imag[0];
fftData[m_FFTSize + 1] = 0;
omxSP_FFTInv_CCSToR_F32(fftData, data, m_inverseContext);
}
}
float* FFTFrame::realData() const
{
return const_cast<float*>(m_realData.data());
}
float* FFTFrame::imagData() const
{
return const_cast<float*>(m_imagData.data());
}
OMXFFTSpec_R_F32* FFTFrame::contextForSize(unsigned log2FFTSize)
{
ASSERT(log2FFTSize);
ASSERT(log2FFTSize <= kMaxFFTPow2Size);
int bufSize;
OMXResult status = omxSP_FFTGetBufSize_R_F32(log2FFTSize, &bufSize);
if (status == OMX_Sts_NoErr) {
OMXFFTSpec_R_F32* context = static_cast<OMXFFTSpec_R_F32*>(malloc(bufSize));
omxSP_FFTInit_R_F32(context, log2FFTSize);
return context;
}
return 0;
}
} // namespace WebCore
#endif // #if OS(ANDROID) && !USE(WEBAUDIO_OPENMAX_DL_FFT)
#endif // ENABLE(WEB_AUDIO)
|