OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tailTime
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/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;
AudioDelayDSPKernel.cpp
167
double AudioDelayDSPKernel::
tailTime
() const
DynamicsCompressor.h
82
double
tailTime
() const { return 0; }
HRTFPanner.cpp
296
double HRTFPanner::
tailTime
() const
298
// Because HRTFPanner is implemented with a DelayKernel and a FFTConvolver, the
tailTime
of the HRTFPanner
299
// is the sum of the
tailTime
of the DelayKernel and the
tailTime
of the FFTConvolver, which is MaxDelayTimeSeconds
306
// 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
38
// 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
155
double BiquadDSPKernel::
tailTime
() const
ConvolverNode.cpp
159
double ConvolverNode::
tailTime
() const
DynamicsCompressorNode.cpp
111
double DynamicsCompressorNode::
tailTime
() const
113
return m_dynamicsCompressor->
tailTime
();
Completed in 1786 milliseconds