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

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
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 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...]
HRTFPanner.cpp 260 m_convolverL1.process(kernelL1->fftFrame(), segmentDestinationL, convolutionDestinationL1, framesPerSegment);
261 m_convolverR1.process(kernelR1->fftFrame(), segmentDestinationR, convolutionDestinationR1, framesPerSegment);
265 m_convolverL2.process(kernelL2->fftFrame(), segmentDestinationL, convolutionDestinationL2, framesPerSegment);
266 m_convolverR2.process(kernelR2->fftFrame(), segmentDestinationR, convolutionDestinationR2, framesPerSegment);

Completed in 259 milliseconds