Changeset 88891 in vbox
- Timestamp:
- May 6, 2021 12:53:17 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144226
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r88887 r88891 3032 3032 */ 3033 3033 uint32_t cbWritable = 0; 3034 DRVAUDIOPLAYSTATE const enmPlayMode = pStreamEx->Out.enmPlayState; 3034 3035 if ( PDMAudioStrmStatusCanWrite(pStreamEx->fStatus) 3035 3036 && pThis->pHostDrvAudio != NULL) 3036 3037 { 3037 switch ( pStreamEx->Out.enmPlayState)3038 switch (enmPlayMode) 3038 3039 { 3039 3040 /* … … 3093 3094 3094 3095 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. */ 3095 3100 break; 3096 3101 case DRVAUDIOPLAYSTATE_INVALID: … … 3105 3110 3106 3111 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) )); 3109 3114 return cbWritable; 3110 3115 } … … 3303 3308 * Get the backend state and check if it changed. 3304 3309 */ 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. */ 3305 3313 PDMHOSTAUDIOSTREAMSTATE const enmBackendState = drvAudioStreamGetBackendState(pThis, pStreamEx); 3306 3314 if (enmBackendState == pStreamEx->enmLastBackendState)
Note:
See TracChangeset
for help on using the changeset viewer.