OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MinFFTSize
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
RealtimeAnalyser.h
71
static const unsigned
MinFFTSize
;
AnalyserNode.cpp
87
+ String::number(RealtimeAnalyser::
MinFFTSize
) + " and "
RealtimeAnalyser.cpp
53
// All FFT implementations are expected to handle power-of-two sizes
MinFFTSize
<= size <= MaxFFTSize.
54
const unsigned RealtimeAnalyser::
MinFFTSize
= 32;
85
if (!isPOT || size > MaxFFTSize || size <
MinFFTSize
)
/external/chromium_org/third_party/WebKit/Source/platform/audio/
ReverbConvolver.cpp
56
const size_t
MinFFTSize
= 128;
63
, m_minFFTSize(
MinFFTSize
) // First stage will have this size - successive stages will double in size each time
145
const int SliceSize =
MinFFTSize
/ 2;
Completed in 620 milliseconds