Lines Matching refs:pPCMBuf
50 void *pPCMBuf;
57 void *pPCMBuf;
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, hw->rpos << hw->info.shift);
671 pSol->pPCMBuf = RTMemAllocZ(pSol->AudioInfo.record.buffer_size);
672 if (!pSol->pPCMBuf)
674 LogRel(("solaudio: init_in: failed to alloc %d %d bytes to pPCMBuf\n", hw->samples << hw->info.shift, hw->samples));
689 if (sol->pPCMBuf)
691 RTMemFree(sol->pPCMBuf);
692 sol->pPCMBuf = NULL;
721 pu8Src = pSol->pPCMBuf;
778 void *p = advance (sol->pPCMBuf, bufs[i].add << hwshift);