Changeset 89131 in vbox
- Timestamp:
- May 17, 2021 11:55:04 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144472
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r89022 r89131 2673 2673 pStreamEx->fStatus |= PDMAUDIOSTREAM_STS_PENDING_DISABLE; 2674 2674 PDMAUDIOSTREAM_STS_ASSERT_VALID(pStreamEx->fStatus); 2675 rc = VINF_SUCCESS; 2675 2676 break; 2676 2677 } … … 2712 2713 pStreamEx->fStatus |= PDMAUDIOSTREAM_STS_PENDING_DISABLE; 2713 2714 PDMAUDIOSTREAM_STS_ASSERT_VALID(pStreamEx->fStatus); 2715 rc = VINF_SUCCESS; 2714 2716 break; 2715 2717 … … 3191 3193 3192 3194 RTCritSectLeave(&pThis->CritSect); 3193 Log3Func(("[%s] cbReadable=% RU32 (%RU64ms)\n",3195 Log3Func(("[%s] cbReadable=%#RX32 (%RU64ms)\n", 3194 3196 pStreamEx->Core.szName, cbReadable, PDMAudioPropsBytesToMilli(&pStreamEx->Host.Cfg.Props, cbReadable))); 3195 3197 return cbReadable; … … 3295 3297 3296 3298 RTCritSectLeave(&pThis->CritSect); 3297 Log3Func(("[%s] cbWritable=% RU32 (%RU64ms) enmPlayMode=%s enmBackendState=%s\n",3299 Log3Func(("[%s] cbWritable=%#RX32 (%RU64ms) enmPlayMode=%s enmBackendState=%s\n", 3298 3300 pStreamEx->Core.szName, cbWritable, PDMAudioPropsBytesToMilli(&pStreamEx->Host.Cfg.Props, cbWritable), 3299 3301 drvAudioPlayStateName(enmPlayMode), PDMHostAudioStreamStateGetName(enmBackendState) )); … … 3410 3412 3411 3413 AssertMsg(PDMAudioPropsIsSizeAligned(&pStreamEx->Guest.Cfg.Props, cbBuf), 3412 ("Stream '%s' got a non-frame-aligned write (% RU32 bytes)\n", pStreamEx->Core.szName, cbBuf));3414 ("Stream '%s' got a non-frame-aligned write (%#RX32 bytes)\n", pStreamEx->Core.szName, cbBuf)); 3413 3415 3414 3416 int rc = RTCritSectEnter(&pThis->CritSect);
Note:
See TracChangeset
for help on using the changeset viewer.