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

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
DownSampler.h 61 AudioFloatArray m_reducedKernel;
DownSampler.cpp 43 , m_reducedKernel(DefaultKernelSize / 2)
67 // after doing the main convolution using m_reducedKernel.
81 m_reducedKernel[(i - 1) / 2] = sinc * window;
99 bool isReducedKernelGood = m_reducedKernel.size() == DefaultKernelSize / 2;
116 // to match shifting forward in time in m_reducedKernel.
121 // Actually process oddSamplesP with m_reducedKernel for efficiency.
123 m_convolver.process(&m_reducedKernel, oddSamplesP, destP, destFramesToProcess);
146 return m_reducedKernel.size() / 2;

Completed in 354 milliseconds