HomeSort by relevance Sort by last modified time
    Searched defs:tailTime (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioDSPKernelProcessor.cpp 129 double AudioDSPKernelProcessor::tailTime() const
134 // It is expected that all the kernels have the same tailTime.
135 return !m_kernels.isEmpty() ? m_kernels.first()->tailTime() : 0;
DynamicsCompressor.h 81 double tailTime() const { return 0; }
HRTFPanner.cpp 297 double HRTFPanner::tailTime() const
299 // Because HRTFPanner is implemented with a DelayKernel and a FFTConvolver, the tailTime of the HRTFPanner
300 // is the sum of the tailTime of the DelayKernel and the tailTime of the FFTConvolver, which is MaxDelayTimeSeconds
307 // 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/
AudioBasicProcessorNode.cpp 139 double AudioBasicProcessorNode::tailTime() const
141 return m_processor->tailTime();
BiquadDSPKernel.cpp 39 // an infinite tailTime. In practice, Biquad filters do not usually (except for very high resonance values)
40 // have a tailTime of longer than approx. 200ms. This value could possibly be calculated based on the
156 double BiquadDSPKernel::tailTime() const
ConvolverNode.cpp 159 double ConvolverNode::tailTime() const
DynamicsCompressorNode.cpp 111 double DynamicsCompressorNode::tailTime() const
113 return m_dynamicsCompressor->tailTime();
DelayDSPKernel.cpp 165 double DelayDSPKernel::tailTime() const

Completed in 980 milliseconds