- Timestamp:
- May 12, 2021 12:50:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioPulseAudio.cpp
r88991 r88992 1567 1567 if (pThis->pContext) 1568 1568 { 1569 pa_context_state_t const enm CtxState = pa_context_get_state(pThis->pContext);1570 if (PA_CONTEXT_IS_GOOD(enm CtxState))1571 { 1572 pa_stream_state_t const enm StreamState = pa_stream_get_state(pStreamPA->pStream);1573 if (PA_STREAM_IS_GOOD(enm State))1569 pa_context_state_t const enmPaCtxState = pa_context_get_state(pThis->pContext); 1570 if (PA_CONTEXT_IS_GOOD(enmPaCtxState)) 1571 { 1572 pa_stream_state_t const enmPaStreamState = pa_stream_get_state(pStreamPA->pStream); 1573 if (PA_STREAM_IS_GOOD(enmPaStreamState)) 1574 1574 { 1575 if (enm State != PA_STREAM_CREATING)1575 if (enmPaStreamState != PA_STREAM_CREATING) 1576 1576 { 1577 1577 if ( pStreamPA->Cfg.enmDir != PDMAUDIODIR_OUT … … 1586 1586 } 1587 1587 else 1588 LogFunc(("non-good PA stream state: %d\n", enm StreamState));1588 LogFunc(("non-good PA stream state: %d\n", enmPaStreamState)); 1589 1589 } 1590 1590 else 1591 LogFunc(("non-good PA context state: %d\n", enm CtxState));1591 LogFunc(("non-good PA context state: %d\n", enmPaCtxState)); 1592 1592 } 1593 1593 else
Note:
See TracChangeset
for help on using the changeset viewer.