Searched defs:tailTime (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioDSPKernelProcessor.cpp133 double AudioDSPKernelProcessor::tailTime() const function in class:blink::AudioDSPKernelProcessor
138 // It is expected that all the kernels have the same tailTime.
139 return !m_kernels.isEmpty() ? m_kernels.first()->tailTime() : 0;
H A DAudioDelayDSPKernel.cpp166 double AudioDelayDSPKernel::tailTime() const function in class:blink::AudioDelayDSPKernel
H A DDynamicsCompressor.h82 double tailTime() const { return 0; } function in class:blink::DynamicsCompressor
H A DHRTFPanner.cpp305 double HRTFPanner::tailTime() const function in class:blink::HRTFPanner
307 // Because HRTFPanner is implemented with a DelayKernel and a FFTConvolver, the tailTime of the HRTFPanner
308 // is the sum of the tailTime of the DelayKernel and the tailTime of the FFTConvolver, which is MaxDelayTimeSeconds
315 // The latency of a FFTConvolver is also fftSize() / 2, and is in addition to its tailTime of the
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioBasicProcessorNode.cpp150 double AudioBasicProcessorNode::tailTime() const function in class:blink::AudioBasicProcessorNode
152 return m_processor->tailTime();
H A DBiquadDSPKernel.cpp38 // an infinite tailTime. In practice, Biquad filters do not usually (except for very high resonance values)
39 // have a tailTime of longer than approx. 200ms. This value could possibly be calculated based on the
183 double BiquadDSPKernel::tailTime() const function in class:blink::BiquadDSPKernel
H A DConvolverNode.cpp167 double ConvolverNode::tailTime() const function in class:blink::ConvolverNode
H A DDynamicsCompressorNode.cpp111 double DynamicsCompressorNode::tailTime() const function in class:blink::DynamicsCompressorNode
113 return m_dynamicsCompressor->tailTime();

Completed in 158 milliseconds