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

  /external/webkit/Source/WebCore/webaudio/
BiquadDSPKernel.h 36 // BiquadDSPKernel is an AudioDSPKernel and is responsible for filtering one channel of a BiquadProcessor using a Biquad object.
38 class BiquadDSPKernel : public AudioDSPKernel {
40 BiquadDSPKernel(BiquadProcessor* processor)
BiquadDSPKernel.cpp 29 #include "BiquadDSPKernel.h"
35 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess)
41 // Then re-factor this code to only run for the first BiquadDSPKernel of each BiquadProcessor.
BiquadProcessor.cpp 31 #include "BiquadDSPKernel.h"
88 return adoptPtr(new BiquadDSPKernel(this));
99 // The BiquadDSPKernel objects rely on this value to see if they need to re-compute their internal filter coefficients.
118 // For each channel of our input, process using the corresponding BiquadDSPKernel into the output channel.

Completed in 2109 milliseconds