- Timestamp:
- May 4, 2018 12:35:32 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r71045 r72110 1003 1003 1004 1004 } while (0); 1005 1006 Log3Func(("[%s] fEnabled=%RTbool, cbWrittenTotal=%RU32, rc=%Rrc\n", pStream->szName, pThis->Out.fEnabled, cbWrittenTotal, rc)); 1005 1007 1006 1008 #ifdef LOG_ENABLED … … 2309 2311 break; 2310 2312 2311 #if defined (VBOX_WITH_STATISTICS) || defined (VBOX_AUDIO_DEBUG_DUMP_PCM_DATA)2313 #ifdef VBOX_WITH_STATISTICS 2312 2314 const uint32_t cbRead = AUDIOMIXBUF_F2B(&pGstStream->MixBuf, cRead); 2313 #endif 2314 2315 #ifdef VBOX_WITH_STATISTICS 2315 2316 2316 STAM_COUNTER_ADD(&pThis->Stats.TotalBytesRead, cbRead); 2317 2317 STAM_COUNTER_ADD(&pGstStream->In.StatBytesTotalRead, cbRead); … … 2340 2340 } while (0); 2341 2341 2342 Log3Func(("[%s] cbReadTotal=%RU32, rc=%Rrc\n", pStream->szName, cbReadTotal, rc));2342 Log3Func(("[%s] fEnabled=%RTbool, cbReadTotal=%RU32, rc=%Rrc\n", pStream->szName, pThis->In.fEnabled, cbReadTotal, rc)); 2343 2343 2344 2344 int rc2 = RTCritSectLeave(&pThis->CritSect); … … 2665 2665 if (fEnable != *pfEnabled) 2666 2666 { 2667 LogRel(("Audio: %s %s\n", 2668 fEnable ? "Enabling " : "Disabling ", enmDir == PDMAUDIODIR_IN ? "input" : "output")); 2669 2667 2670 PPDMAUDIOSTREAM pStream; 2668 2671 RTListForEach(&pThis->lstHstStreams, pStream, PDMAUDIOSTREAM, Node)
Note:
See TracChangeset
for help on using the changeset viewer.