/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 | 53 class PLATFORM_EXPORT FFTFrame { 57 FFTFrame(unsigned fftSize); 58 FFTFrame(); // creates a blank/empty frame for later use with createInterpolatedFrame() 59 FFTFrame(const FFTFrame& frame); 60 ~FFTFrame(); 77 static PassOwnPtr<FFTFrame> createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame& frame2, double x); 81 void multiply(const FFTFrame&); // multiplies ourself with frame : effectively operator*=( [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;
|
FFTFrame.cpp | 33 #include "platform/audio/FFTFrame.h" 47 void FFTFrame::doPaddedFFT(const float* data, size_t dataSize) 57 PassOwnPtr<FFTFrame> FFTFrame::createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame& frame2, double x) 59 OwnPtr<FFTFrame> newFrame = adoptPtr(new FFTFrame(frame1.fftSize())); 75 void FFTFrame::interpolateFrequencyComponents(const FFTFrame& frame1, const FFTFrame& frame2, double interp [all...] |
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...] |
HRTFKernel.cpp | 59 FFTFrame estimationFrame(analysisFFTSize); 93 m_fftFrame = adoptPtr(new FFTFrame(fftSize)); 100 FFTFrame fftFrame(*m_fftFrame); 103 fftFrame.addConstantGroupDelay(m_frameDelay); 104 fftFrame.doInverseFFT(channel->mutableData()); 127 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" 52 FFTFrame::FFTFrame(unsigned fftSize) 69 FFTFrame::FFTFrame() 78 FFTFrame::FFTFrame(const FFTFrame& frame) 96 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/platform/audio/android/ |
FFTFrameOpenMAXDLAndroid.cpp | 31 #include "platform/audio/FFTFrame.h" 45 FFTFrame::FFTFrame(unsigned fftSize) 62 FFTFrame::FFTFrame() 71 FFTFrame::FFTFrame(const FFTFrame& frame) 89 void FFTFrame::initialize() 93 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" 45 FFTFrame::FFTFrame(unsigned fftSize) 63 FFTFrame::FFTFrame() 70 FFTFrame::FFTFrame(const FFTFrame& frame) 88 void FFTFrame::initialize( [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
RealtimeAnalyser.h | 29 #include "platform/audio/FFTFrame.h" 80 OwnPtr<FFTFrame> m_analysisFrame;
|
RealtimeAnalyser.cpp | 64 m_analysisFrame = adoptPtr(new FFTFrame(DefaultFFTSize)); 79 m_analysisFrame = adoptPtr(new FFTFrame(size));
|
PeriodicWave.cpp | 35 #include "platform/audio/FFTFrame.h" 163 // This FFTFrame is used to cull partials (represented by frequency bins). 164 FFTFrame frame(fftSize);
|
AudioContext.cpp | 37 #include "platform/audio/FFTFrame.h" 162 FFTFrame::initialize();
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
blink_platform.target.darwin-arm.mk | 119 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |
blink_platform.target.darwin-arm64.mk | 118 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |
blink_platform.target.darwin-mips.mk | 118 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |
blink_platform.target.darwin-mips64.mk | 118 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |
blink_platform.target.darwin-x86.mk | 118 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |
blink_platform.target.darwin-x86_64.mk | 118 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |
blink_platform.target.linux-arm.mk | 119 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |
blink_platform.target.linux-arm64.mk | 118 third_party/WebKit/Source/platform/audio/FFTFrame.cpp \ [all...] |