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

/vbox/src/VBox/Devices/Audio/
H A DDrvAudioCommon.cpp139 void drvAudioGstInFreeRes(PPDMAUDIOGSTSTRMIN pGstStrmIn) argument
141 AssertPtrReturnVoid(pGstStrmIn);
143 if (pGstStrmIn->State.pszName)
145 RTStrFree(pGstStrmIn->State.pszName);
146 pGstStrmIn->State.pszName = NULL;
149 audioMixBufDestroy(&pGstStrmIn->MixBuf);
187 PPDMAUDIOGSTSTRMIN pGstStrmIn;
188 RTListForEach(&pHstStrmIn->lstGstStrmIn, pGstStrmIn, PDMAUDIOGSTSTRMIN, Node)
190 if (pGstStrmIn->State.fActive)
191 cMinSamples = RT_MIN(cMinSamples, audioMixBufMixed(&pGstStrmIn
[all...]
H A DDrvAudio.cpp73 static int drvAudioDestroyGstIn(PDRVAUDIO pThis, PPDMAUDIOGSTSTRMIN pGstStrmIn);
684 PPDMAUDIOGSTSTRMIN pGstStrmIn = (PPDMAUDIOGSTSTRMIN)RTMemAllocZ(sizeof(PDMAUDIOGSTSTRMIN)); local
685 if (!pGstStrmIn)
697 RTMemFree(pGstStrmIn);
705 rc = drvAudioGstInInit(pGstStrmIn, pHstStrmIn, pszName, pCfg);
708 pHstStrmIn->pGstStrmIn = pGstStrmIn;
711 *ppGstStrmIn = pGstStrmIn;
714 drvAudioDestroyGstIn(pThis, pGstStrmIn);
724 * @param pGstStrmIn Pointe
730 drvAudioGstInInit(PPDMAUDIOGSTSTRMIN pGstStrmIn, PPDMAUDIOHSTSTRMIN pHstStrmIn, const char *pszName, PPDMAUDIOSTREAMCFG pCfg) argument
985 drvAudioDestroyGstIn(PDRVAUDIO pThis, PPDMAUDIOGSTSTRMIN pGstStrmIn) argument
1105 PPDMAUDIOGSTSTRMIN pGstStrmIn = pHstStrmIn->pGstStrmIn; local
1402 drvAudioRead(PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn, void *pvBuf, uint32_t cbBuf, uint32_t *pcbRead) argument
1498 drvAudioEnableIn(PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn, bool fEnable) argument
1547 drvAudioIsInputOK(PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn) argument
1579 PPDMAUDIOGSTSTRMIN pGstStrmIn = *ppGstStrmIn; local
1720 drvAudioIsActiveIn(PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn) argument
1730 drvAudioCloseIn(PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn) argument
[all...]
/vbox/include/VBox/vmm/
H A Dpdmaudioifs.h317 PPDMAUDIOGSTSTRMIN pGstStrmIn; member in struct:PDMAUDIOHSTSTRMIN
412 * @param pGstStrmIn Pointer to guest input stream to write to.
417 DECLR3CALLBACKMEMBER(int, pfnRead, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn, void *pvBuf, uint32_t cbSize, uint32_t *pcbRead));
436 * @param pGstStrmIn Pointer to guest input stream to check.
438 DECLR3CALLBACKMEMBER(bool, pfnIsInputOK, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn));
472 * @param pGstStrmIn Pointer to guest input stream.
475 DECLR3CALLBACKMEMBER(int, pfnEnableIn, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn, bool fEnable));
481 * @param pGstStrmIn Pointer to guest input stream.
483 DECLR3CALLBACKMEMBER(void, pfnCloseIn, (PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMIN pGstStrmIn));
526 * @param pGstStrmIn Pointe
[all...]

Completed in 109 milliseconds