VirtualBox

Changeset 68759 in vbox


Ignore:
Timestamp:
Sep 14, 2017 8:12:19 AM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
117995
Message:

Audio/DrvHostDSound.cpp: Get rid of the pdwBuffer parameter of dsoundGetPosOut(); this value always matches pStreamDS->Out.cbPlayBuf.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp

    r68683 r68759  
    277277
    278278
    279 static int dsoundGetPosOut(PDRVHOSTDSOUND pThis, PDSOUNDSTREAM pStreamDS,
    280                            DWORD *pdwBuffer, DWORD *pdwFree, DWORD *pdwPlayPos)
     279static int dsoundGetPosOut(PDRVHOSTDSOUND pThis, PDSOUNDSTREAM pStreamDS, DWORD *pdwFree, DWORD *pdwPlayPos)
    281280{
    282281    AssertPtr(pThis);
    283282    AssertPtrReturn(pStreamDS, VERR_INVALID_POINTER);
    284     AssertPtrNull(pdwBuffer);
    285283    AssertPtrNull(pdwFree);
    286284    AssertPtrNull(pdwPlayPos);
     
    299297        {
    300298            DWORD const cbBuffer = pStreamDS->Out.cbPlayBuf;
    301             if (pdwBuffer)
    302                 *pdwBuffer  = cbBuffer;
    303299            if (pdwFree)
    304300                *pdwFree    = cbBuffer - dsoundRingDistance(pStreamDS->Out.offPlayWritePos, cbPlayPos, cbBuffer);
     
    614610        /*
    615611         * 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
    617615         *
    618616         * However, as we do not want to use memory on the sound device directly
     
    16041602        PPDMAUDIOPCMPROPS pProps = &pStreamDS->pCfg->Props;
    16051603
    1606         DWORD cbBuffer, cbFree, cbPlayPos;
    1607         rc = dsoundGetPosOut(pThis, pStreamDS, &cbBuffer, &cbFree, &cbPlayPos);
     1604        DWORD cbFree, cbPlayPos;
     1605        rc = dsoundGetPosOut(pThis, pStreamDS, &cbFree, &cbPlayPos);
    16081606        if (RT_FAILURE(rc))
    16091607            break;
     
    16161614        if (cbFree <= cbSample)
    16171615            break;
     1616        Assert(cbFree >= cbSample);
    16181617        cbFree     -= cbSample;
    16191618
     
    16231622        cbLive = RT_MIN(cbFree, cbLive);
    16241623        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));
    16291630            break;
    16301631        }
     
    16591660        directSoundPlayUnlock(pThis, pDSB, pv1, pv2, cb1, cb2);
    16601661
    1661         pStreamDS->Out.offPlayWritePos = (pStreamDS->Out.offPlayWritePos + cbWrittenTotal) % cbBuffer;
     1662        pStreamDS->Out.offPlayWritePos = (pStreamDS->Out.offPlayWritePos + cbWrittenTotal) % pStreamDS->Out.cbPlayBuf;
    16621663
    16631664        DSLOGF(("DSound: %RU32/%RU32, buffer write pos %ld, rc=%Rrc\n",
     
    20282029                else if (aEvents[dwObj] == pThis->aEvents[DSOUNDEVENT_OUTPUT])
    20292030                {
    2030                     DWORD cbBuffer, cbFree, cbPlayPos;
    2031                     rc = dsoundGetPosOut(pThis->pDSStream, &cbBuffer, &cbFree, &cbPlayPos);
     2031                    DWORD cbFree, cbPlayPos;
     2032                    rc = dsoundGetPosOut(pThis->pDSStream, &cbFree, &cbPlayPos);
    20322033                    if (   RT_SUCCESS(rc)
    20332034                        && cbFree)
     
    23172318static DECLCALLBACK(uint32_t) drvHostDSoundStreamGetWritable(PPDMIHOSTAUDIO pInterface, PPDMAUDIOBACKENDSTREAM pStream)
    23182319{
    2319     RT_NOREF(pInterface, pStream);
    2320 
    23212320    AssertPtrReturn(pInterface, PDMAUDIOSTREAMSTS_FLAG_NONE);
    23222321    AssertPtrReturn(pStream,    PDMAUDIOSTREAMSTS_FLAG_NONE);
     
    23282327    {
    23292328        DWORD cbFree;
    2330         int rc = dsoundGetPosOut(pThis, pStreamDS, NULL /* cbBuffer */, &cbFree, NULL /* cbPlayPos */);
     2329        int rc = dsoundGetPosOut(pThis, pStreamDS, &cbFree, NULL /* cbPlayPos */);
    23312330        if (   RT_SUCCESS(rc)
    23322331            && cbFree)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette