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

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrameStub.cpp 26 // FFTFrame stub implementation to avoid link errors during bringup
34 #include "platform/audio/FFTFrame.h"
39 FFTFrame::FFTFrame(unsigned /*fftSize*/)
47 FFTFrame::FFTFrame()
55 FFTFrame::FFTFrame(const FFTFrame& frame)
62 FFTFrame::~FFTFrame(
    [all...]
FFTFrame.h 68 class PLATFORM_EXPORT FFTFrame {
72 FFTFrame(unsigned fftSize);
73 FFTFrame(); // creates a blank/empty frame for later use with createInterpolatedFrame()
74 FFTFrame(const FFTFrame& frame);
75 ~FFTFrame();
81 void multiply(const FFTFrame& frame); // multiplies ourself with frame : effectively operator*=()
92 static PassOwnPtr<FFTFrame> createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame& frame2, double x)
    [all...]
FFTConvolver.h 33 #include "platform/audio/FFTFrame.h"
49 void process(FFTFrame* fftKernel, const float* sourceP, float* destP, size_t framesToProcess);
56 FFTFrame m_frame;
HRTFKernel.h 32 #include "platform/audio/FFTFrame.h"
59 static PassRefPtr<HRTFKernel> create(PassOwnPtr<FFTFrame> fftFrame, float frameDelay, float sampleRate)
61 return adoptRef(new HRTFKernel(fftFrame, frameDelay, sampleRate));
67 FFTFrame* fftFrame() { return m_fftFrame.get(); }
82 HRTFKernel(PassOwnPtr<FFTFrame> fftFrame, float frameDelay, float sampleRate)
83 : m_fftFrame(fftFrame)
89 OwnPtr<FFTFrame> m_fftFrame
    [all...]
FFTFrame.cpp 33 #include "platform/audio/FFTFrame.h"
46 void FFTFrame::doPaddedFFT(const float* data, size_t dataSize)
56 PassOwnPtr<FFTFrame> FFTFrame::createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame& frame2, double x)
58 OwnPtr<FFTFrame> newFrame = adoptPtr(new FFTFrame(frame1.fftSize()));
74 void FFTFrame::interpolateFrequencyComponents(const FFTFrame& frame1, const FFTFrame& frame2, double interp
    [all...]
HRTFKernel.cpp 61 FFTFrame estimationFrame(analysisFFTSize);
95 m_fftFrame = adoptPtr(new FFTFrame(fftSize));
102 FFTFrame fftFrame(*m_fftFrame);
105 fftFrame.addConstantGroupDelay(m_frameDelay);
106 fftFrame.doInverseFFT(channel->mutableData());
129 OwnPtr<FFTFrame> interpolatedFrame = FFTFrame::createInterpolatedFrame(*kernel1->fftFrame(), *kernel2->fftFrame(), x)
    [all...]
ReverbConvolverStage.h 33 #include "platform/audio/FFTFrame.h"
64 OwnPtr<FFTFrame> m_fftKernel;
FFTConvolver.cpp 50 void FFTConvolver::process(FFTFrame* fftKernel, const float* sourceP, float* destP, size_t framesToProcess)
ReverbConvolverStage.cpp 56 m_fftKernel = adoptPtr(new FFTFrame(fftSize));
  /external/chromium_org/third_party/WebKit/Source/platform/audio/ffmpeg/
FFTFrameFFMPEG.cpp 26 // FFTFrame implementation using FFmpeg's RDFT algorithm,
35 #include "platform/audio/FFTFrame.h"
90 FFTFrame::FFTFrame(unsigned fftSize)
107 FFTFrame::FFTFrame()
116 FFTFrame::FFTFrame(const FFTFrame& frame)
134 void FFTFrame::initialize(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/chromium/
FFTFrameOpenMAXDLAndroid.cpp 31 #include "platform/audio/FFTFrame.h"
46 FFTFrame::FFTFrame(unsigned fftSize)
63 FFTFrame::FFTFrame()
72 FFTFrame::FFTFrame(const FFTFrame& frame)
90 void FFTFrame::initialize()
94 void FFTFrame::cleanup(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/ipp/
FFTFrameIPP.cpp 27 // FFTFrame implementation using Intel IPP's DFT algorithm,
36 #include "platform/audio/FFTFrame.h"
47 FFTFrame::FFTFrame(unsigned fftSize)
65 FFTFrame::FFTFrame()
72 FFTFrame::FFTFrame(const FFTFrame& frame)
90 void FFTFrame::initialize(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/mac/
FFTFrameMac.cpp 29 // Mac OS X - specific FFTFrame implementation
37 #include "platform/audio/FFTFrame.h"
45 FFTSetup* FFTFrame::fftSetups = 0;
48 FFTFrame::FFTFrame(unsigned fftSize)
67 FFTFrame::FFTFrame()
80 FFTFrame::FFTFrame(const FFTFrame& frame
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
RealtimeAnalyser.h 36 class FFTFrame;
81 OwnPtr<FFTFrame> m_analysisFrame;
RealtimeAnalyser.cpp 33 #include "platform/audio/FFTFrame.h"
67 m_analysisFrame = adoptPtr(new FFTFrame(DefaultFFTSize));
89 m_analysisFrame = adoptPtr(new FFTFrame(size));
PeriodicWave.cpp 35 #include "platform/audio/FFTFrame.h"
164 // This FFTFrame is used to cull partials (represented by frequency bins).
165 FFTFrame frame(fftSize);
AudioContext.cpp 37 #include "platform/audio/FFTFrame.h"
171 FFTFrame::initialize();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk 114 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 113 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 113 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \
    [all...]
blink_platform.target.linux-arm.mk 114 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \
    [all...]
blink_platform.target.linux-mips.mk 113 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \
    [all...]
blink_platform.target.linux-x86.mk 113 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \
    [all...]

Completed in 346 milliseconds