VirtualBox

Changeset 88891 in vbox


Ignore:
Timestamp:
May 6, 2021 12:53:17 AM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
144226
Message:

DrvAudio: A couple of todos and logging. bugref:9890

File:
1 edited

Legend:

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

    r88887 r88891  
    30323032     */
    30333033    uint32_t cbWritable = 0;
     3034    DRVAUDIOPLAYSTATE const enmPlayMode = pStreamEx->Out.enmPlayState;
    30343035    if (   PDMAudioStrmStatusCanWrite(pStreamEx->fStatus)
    30353036        && pThis->pHostDrvAudio != NULL)
    30363037    {
    3037         switch (pStreamEx->Out.enmPlayState)
     3038        switch (enmPlayMode)
    30383039        {
    30393040            /*
     
    30933094
    30943095            case DRVAUDIOPLAYSTATE_NOPLAY:
     3096/** @todo we'll return zero here. but what if the device was
     3097 * reactivate/whatever.  We won't get to the play code that detects that
     3098 * state change and we end up playing nothing...  Probably holding up both
     3099 * this and other output streams / driver chains. */
    30953100                break;
    30963101            case DRVAUDIOPLAYSTATE_INVALID:
     
    31053110
    31063111    RTCritSectLeave(&pThis->CritSect);
    3107     Log3Func(("[%s] cbWritable=%RU32 (%RU64ms)\n",
    3108               pStreamEx->Core.szName, cbWritable, PDMAudioPropsBytesToMilli(&pStreamEx->Host.Cfg.Props, cbWritable)));
     3112    Log3Func(("[%s] cbWritable=%RU32 (%RU64ms) enmPlayMode=%s\n", pStreamEx->Core.szName, cbWritable,
     3113              PDMAudioPropsBytesToMilli(&pStreamEx->Host.Cfg.Props, cbWritable), drvAudioPlayStateName(enmPlayMode) ));
    31093114    return cbWritable;
    31103115}
     
    33033308             * Get the backend state and check if it changed.
    33043309             */
     3310/** @todo This is the wrong place for doing this, or we need to do it in more places.  Problem is that if we've
     3311 * entered NOPLAY mode this function won't get called because StreamGetWritable returns zero. A bit difficult to
     3312 * reproduce, though. */
    33053313            PDMHOSTAUDIOSTREAMSTATE const enmBackendState = drvAudioStreamGetBackendState(pThis, pStreamEx);
    33063314            if (enmBackendState == pStreamEx->enmLastBackendState)
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