Searched defs:FFTFrame (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DFFTFrameStub.cpp26 // FFTFrame stub implementation to avoid link errors during bringup
34 #include "FFTFrame.h"
39 FFTFrame::FFTFrame(unsigned /*fftSize*/) function in class:WebCore::FFTFrame
47 FFTFrame::FFTFrame() function in class:WebCore::FFTFrame
55 FFTFrame::FFTFrame(const FFTFrame& frame) function in class:WebCore::FFTFrame
62 FFTFrame
[all...]
H A DFFTFrame.h56 class FFTFrame { class in namespace:WebCore
60 FFTFrame(unsigned fftSize);
61 FFTFrame(); // creates a blank/empty frame for later use with createInterpolatedFrame()
62 FFTFrame(const FFTFrame& frame);
63 ~FFTFrame();
69 void multiply(const FFTFrame& frame); // multiplies ourself with frame : effectively operator*=()
80 static PassOwnPtr<FFTFrame> createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame
[all...]
/external/webkit/Source/WebCore/platform/audio/mac/
H A DFFTFrameMac.cpp29 // Mac OS X - specific FFTFrame implementation
35 #include "FFTFrame.h"
41 FFTSetup* FFTFrame::fftSetups = 0;
44 FFTFrame::FFTFrame(unsigned fftSize) function in class:WebCore::FFTFrame
63 FFTFrame::FFTFrame() function in class:WebCore::FFTFrame
76 FFTFrame::FFTFrame(const FFTFrame function in class:WebCore::FFTFrame
[all...]
/external/webkit/Source/WebCore/platform/audio/mkl/
H A DFFTFrameMKL.cpp26 // FFTFrame implementation using Intel's Math Kernel Library (MKL),
35 #include "FFTFrame.h"
86 DFTI_DESCRIPTOR_HANDLE* FFTFrame::descriptorHandles = 0;
89 FFTFrame::FFTFrame(unsigned fftSize) function in class:WebCore::FFTFrame
104 FFTFrame::FFTFrame() function in class:WebCore::FFTFrame
112 FFTFrame::FFTFrame(const FFTFrame function in class:WebCore::FFTFrame
[all...]
/external/webkit/Source/WebCore/platform/audio/fftw/
H A DFFTFrameFFTW.cpp26 // FFTFrame implementation using the FFTW library.
34 #include "FFTFrame.h"
42 fftwf_plan* FFTFrame::fftwForwardPlans = 0;
43 fftwf_plan* FFTFrame::fftwBackwardPlans = 0;
45 Mutex* FFTFrame::s_planLock = 0;
58 FFTFrame::FFTFrame(unsigned fftSize) function in class:WebCore::FFTFrame
76 // we would need to memcpy it in to or out of the FFTFrame, adding
88 FFTFrame::FFTFrame() function in class:WebCore::FFTFrame
97 FFTFrame::FFTFrame(const FFTFrame& frame) function in class:WebCore::FFTFrame
[all...]

Completed in 71 milliseconds