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

/vbox/src/VBox/Devices/Audio/
H A Dpulseaudio.c604 int cFramesToPeek; /* the largest amount we want/can get this peek */ local
628 for (; cFramesToRead; cFramesToRead -= cFramesToPeek)
642 cFramesToPeek = audio_MIN((signed)( pPulse->cbPeekBuf
647 if (hw->wpos + cFramesToPeek > hw->samples)
658 cFramesToPeek - cFramesDelta,
665 cFramesToPeek,
669 cFramesRead += cFramesToPeek;
670 hw->wpos = (hw->wpos + cFramesToPeek) % hw->samples;
671 pPulse->offPeekBuf += cFramesToPeek << hwshift;

Completed in 42 milliseconds