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

/vbox/src/VBox/Devices/Audio/
H A Dpulseaudio.c67 size_t cbPeekBuf; member in struct:PulseVoice
625 cFramesAvail += (pPulse->cbPeekBuf - pPulse->offPeekBuf) >> hwshift;
634 pa_stream_peek(pPulse->pStream, (const void**)&pPulse->pu8PeekBuf, &pPulse->cbPeekBuf);
638 || !pPulse->cbPeekBuf)
642 cFramesToPeek = audio_MIN((signed)( pPulse->cbPeekBuf
674 if (pPulse->offPeekBuf == pPulse->cbPeekBuf)
H A DDrvHostPulseAudio.cpp105 size_t cbPeekBuf; member in struct:PULSEAUDIOSTREAM
713 Assert(pThisStrmIn->cbPeekBuf >= pThisStrmIn->offPeekBuf);
714 cbAvail += (pThisStrmIn->cbPeekBuf - pThisStrmIn->offPeekBuf);
727 LogFlowFunc(("cbToRead=%zu, cbAvail=%zu, offPeekBuf=%zu, cbPeekBuf=%zu\n",
728 cbToRead, cbAvail, pThisStrmIn->offPeekBuf, pThisStrmIn->cbPeekBuf));
740 (const void**)&pThisStrmIn->pu8PeekBuf, &pThisStrmIn->cbPeekBuf);
746 * Note: If there's a data hole (cbPeekBuf then contains the length of the hole)
749 && !pThisStrmIn->cbPeekBuf)
755 Assert(pThisStrmIn->cbPeekBuf >= pThisStrmIn->offPeekBuf);
756 size_t cbToWrite = RT_MIN(pThisStrmIn->cbPeekBuf
[all...]

Completed in 36 milliseconds