Changeset 64982 in vbox
- Timestamp:
- Dec 21, 2016 1:28:21 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r64980 r64982 627 627 return VINF_SUCCESS; 628 628 629 #ifdef LOG_ENABLED 629 630 const AUDMIXSINKSTS stsSink = AudioMixerSinkGetStatus(pSink); 630 631 631 const bool fIsEnabled = stsSink & AUDMIXSINK_STS_RUNNING;632 const bool fPendingDisable = stsSink & AUDMIXSINK_STS_PENDING_DISABLE;632 const bool fIsEnabled = RT_BOOL(stsSink & AUDMIXSINK_STS_RUNNING); 633 const bool fPendingDisable = RT_BOOL(stsSink & AUDMIXSINK_STS_PENDING_DISABLE); 633 634 634 635 LogFunc(("[SD%RU8] fEnable=%RTbool, fIsEnabled=%RTbool, fPendingDisable=%RTbool, DCH=%RTbool, cStreamsActive=%RU8\n", 635 636 pStream->u8Strm, fEnable, fIsEnabled, fPendingDisable, RT_BOOL(pStream->Regs.sr & AC97_SR_DCH), pThis->cStreamsActive)); 637 #endif 636 638 637 639 int rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.