Changeset 68759 in vbox
- Timestamp:
- Sep 14, 2017 8:12:19 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117995
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r68683 r68759 277 277 278 278 279 static int dsoundGetPosOut(PDRVHOSTDSOUND pThis, PDSOUNDSTREAM pStreamDS, 280 DWORD *pdwBuffer, DWORD *pdwFree, DWORD *pdwPlayPos) 279 static int dsoundGetPosOut(PDRVHOSTDSOUND pThis, PDSOUNDSTREAM pStreamDS, DWORD *pdwFree, DWORD *pdwPlayPos) 281 280 { 282 281 AssertPtr(pThis); 283 282 AssertPtrReturn(pStreamDS, VERR_INVALID_POINTER); 284 AssertPtrNull(pdwBuffer);285 283 AssertPtrNull(pdwFree); 286 284 AssertPtrNull(pdwPlayPos); … … 299 297 { 300 298 DWORD const cbBuffer = pStreamDS->Out.cbPlayBuf; 301 if (pdwBuffer)302 *pdwBuffer = cbBuffer;303 299 if (pdwFree) 304 300 *pdwFree = cbBuffer - dsoundRingDistance(pStreamDS->Out.offPlayWritePos, cbPlayPos, cbBuffer); … … 614 610 /* 615 611 * As we reuse our (secondary) buffer for playing out data as it comes in, 616 * we're using this buffer as a so-called static buffer. 612 * we're using this buffer as a so-called streaming buffer. 613 * 614 * See https://msdn.microsoft.com/en-us/library/windows/desktop/ee419014(v=vs.85).aspx 617 615 * 618 616 * However, as we do not want to use memory on the sound device directly … … 1604 1602 PPDMAUDIOPCMPROPS pProps = &pStreamDS->pCfg->Props; 1605 1603 1606 DWORD cb Buffer, cbFree, cbPlayPos;1607 rc = dsoundGetPosOut(pThis, pStreamDS, &cb Buffer, &cbFree, &cbPlayPos);1604 DWORD cbFree, cbPlayPos; 1605 rc = dsoundGetPosOut(pThis, pStreamDS, &cbFree, &cbPlayPos); 1608 1606 if (RT_FAILURE(rc)) 1609 1607 break; … … 1616 1614 if (cbFree <= cbSample) 1617 1615 break; 1616 Assert(cbFree >= cbSample); 1618 1617 cbFree -= cbSample; 1619 1618 … … 1623 1622 cbLive = RT_MIN(cbFree, cbLive); 1624 1623 cbLive &= ~pStreamDS->uAlign; 1625 if (cbLive == 0 || cbLive > cbBuffer) 1626 { 1627 DSLOG(("DSound: cbLive=%RU32, cbBuffer=%ld, offPlayWritePos=%ld, cbPlayPos=%ld\n", 1628 cbLive, cbBuffer, pStreamDS->Out.offPlayWritePos, cbPlayPos)); 1624 1625 if ( cbLive == 0 1626 || cbLive > pStreamDS->Out.cbPlayBuf) 1627 { 1628 DSLOG(("DSound: cbLive=%RU32, offPlayWritePos=%ld, cbPlayPos=%ld\n", 1629 cbLive, pStreamDS->Out.offPlayWritePos, cbPlayPos)); 1629 1630 break; 1630 1631 } … … 1659 1660 directSoundPlayUnlock(pThis, pDSB, pv1, pv2, cb1, cb2); 1660 1661 1661 pStreamDS->Out.offPlayWritePos = (pStreamDS->Out.offPlayWritePos + cbWrittenTotal) % cbBuffer;1662 pStreamDS->Out.offPlayWritePos = (pStreamDS->Out.offPlayWritePos + cbWrittenTotal) % pStreamDS->Out.cbPlayBuf; 1662 1663 1663 1664 DSLOGF(("DSound: %RU32/%RU32, buffer write pos %ld, rc=%Rrc\n", … … 2028 2029 else if (aEvents[dwObj] == pThis->aEvents[DSOUNDEVENT_OUTPUT]) 2029 2030 { 2030 DWORD cb Buffer, cbFree, cbPlayPos;2031 rc = dsoundGetPosOut(pThis->pDSStream, &cb Buffer, &cbFree, &cbPlayPos);2031 DWORD cbFree, cbPlayPos; 2032 rc = dsoundGetPosOut(pThis->pDSStream, &cbFree, &cbPlayPos); 2032 2033 if ( RT_SUCCESS(rc) 2033 2034 && cbFree) … … 2317 2318 static DECLCALLBACK(uint32_t) drvHostDSoundStreamGetWritable(PPDMIHOSTAUDIO pInterface, PPDMAUDIOBACKENDSTREAM pStream) 2318 2319 { 2319 RT_NOREF(pInterface, pStream);2320 2321 2320 AssertPtrReturn(pInterface, PDMAUDIOSTREAMSTS_FLAG_NONE); 2322 2321 AssertPtrReturn(pStream, PDMAUDIOSTREAMSTS_FLAG_NONE); … … 2328 2327 { 2329 2328 DWORD cbFree; 2330 int rc = dsoundGetPosOut(pThis, pStreamDS, NULL /* cbBuffer */,&cbFree, NULL /* cbPlayPos */);2329 int rc = dsoundGetPosOut(pThis, pStreamDS, &cbFree, NULL /* cbPlayPos */); 2331 2330 if ( RT_SUCCESS(rc) 2332 2331 && cbFree)
Note:
See TracChangeset
for help on using the changeset viewer.