Home | History | Annotate | Download | only in webaudio

Lines Matching refs:endFrame

208     unsigned endFrame = m_isGrain ? AudioUtilities::timeToSampleFrame(m_grainOffset + m_grainDuration, bufferSampleRate) : bufferLength;
214 endFrame += 512;
217 if (endFrame > bufferLength)
218 endFrame = bufferLength;
219 if (m_virtualReadIndex >= endFrame)
224 double virtualEndFrame = endFrame;
225 double virtualDeltaFrames = endFrame;
259 endFrame = static_cast<unsigned>(virtualEndFrame);
261 int framesToEnd = endFrame - readIndex;
273 if (readIndex >= endFrame) {