Home | History | Annotate | Download | only in audio

Lines Matching defs:rate

56     double nextFractionalIndex = m_virtualReadIndex + framesToProcess * rate();
82 double rate = this->rate();
83 rate = max(0.0, rate);
84 rate = min(AudioResampler::MaxRate, rate);
97 ASSERT(virtualReadIndex >= 0 && 1 + static_cast<unsigned>(virtualReadIndex + (framesToProcess - 1) * rate) < m_sourceBuffer.size());
112 virtualReadIndex += rate;
136 double AudioResamplerKernel::rate() const
138 return m_resampler->rate();