HomeSort by relevance Sort by last modified time
    Searched defs:FFTFrame (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/audio/
FFTFrameStub.cpp 26 // FFTFrame stub implementation to avoid link errors during bringup
34 #include "FFTFrame.h"
39 FFTFrame::FFTFrame(unsigned /*fftSize*/)
47 FFTFrame::FFTFrame()
55 FFTFrame::FFTFrame(const FFTFrame& frame)
62 FFTFrame::~FFTFrame(
    [all...]
FFTFrame.h 56 class FFTFrame {
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& frame2, double x)
    [all...]
  /external/webkit/Source/WebCore/platform/audio/mac/
FFTFrameMac.cpp 29 // Mac OS X - specific FFTFrame implementation
35 #include "FFTFrame.h"
41 FFTSetup* FFTFrame::fftSetups = 0;
44 FFTFrame::FFTFrame(unsigned fftSize)
63 FFTFrame::FFTFrame()
76 FFTFrame::FFTFrame(const FFTFrame& frame
    [all...]
  /external/webkit/Source/WebCore/platform/audio/fftw/
FFTFrameFFTW.cpp 26 // 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)
76 // we would need to memcpy it in to or out of the FFTFrame, adding
88 FFTFrame::FFTFrame()
    [all...]
  /external/webkit/Source/WebCore/platform/audio/mkl/
FFTFrameMKL.cpp 26 // 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)
104 FFTFrame::FFTFrame()
112 FFTFrame::FFTFrame(const FFTFrame& frame
    [all...]

Completed in 809 milliseconds