OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pow2size
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/mac/
FFTFrameMac.cpp
130
int
pow2size
= static_cast<int>(log2(fftSize));
local
131
ASSERT(
pow2size
< kMaxFFTPow2Size);
132
if (!fftSetups[
pow2size
])
133
fftSetups[
pow2size
] = vDSP_create_fftsetup(
pow2size
, FFT_RADIX2);
135
return fftSetups[
pow2size
];
/external/chromium_org/third_party/WebKit/Source/platform/audio/ffmpeg/
FFTFrameFFMPEG.cpp
170
int
pow2size
= static_cast<int>(log2(fftSize));
local
171
ASSERT(
pow2size
< kMaxFFTPow2Size);
173
RDFTContext* context = av_rdft_init(
pow2size
, (RDFTransformType)trans);
Completed in 71 milliseconds