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

/vbox/src/VBox/Devices/Audio/
H A Dpulseaudio.c55 void *pPCMBuf; member in struct:PulseVoice
402 pPulse->pPCMBuf = RTMemAllocZ(cbBuf);
403 if (!pPulse->pPCMBuf)
428 if (pPulse->pPCMBuf)
430 RTMemFree (pPulse->pPCMBuf);
431 pPulse->pPCMBuf = NULL;
477 pu8Dst = advance (pPulse->pPCMBuf, hw->rpos << hw->info.shift);
H A Dsolaudio.c50 void *pPCMBuf; member in struct:solaudioVoiceOut
57 void *pPCMBuf; member in struct:solaudioVoiceIn
302 pSol->pPCMBuf = RTMemAllocZ(pSol->AudioInfo.play.buffer_size);
303 if (!pSol->pPCMBuf)
305 LogRel(("solaudio: failed to alloc %d %d bytes to pPCMBuf\n", hw->samples << hw->info.shift, hw->samples));
319 if (sol->pPCMBuf)
321 RTMemFree(sol->pPCMBuf);
322 sol->pPCMBuf = NULL;
333 audio_pcm_info_clear_buf(&hw->info, pSol->pPCMBuf, hw->samples);
433 pu8Dst = advance(pSol->pPCMBuf, h
[all...]

Completed in 46 milliseconds