Changeset 80500 in vbox
- Timestamp:
- Aug 29, 2019 3:26:27 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r77031 r80500 1225 1225 uint32_t cbFree = (uint32_t)RTCircBufFree(pCircBuf); 1226 1226 if ( !cbFree 1227 || pStreamDS->In.cOverruns < 32) /** @todo Make this configurable. */ 1228 { 1229 DSLOG(("DSound: Warning: Capture buffer full, skipping to record data (%RU32 bytes)\n", cbUsed)); 1227 && pStreamDS->In.cOverruns < 32) /** @todo Make this configurable. */ 1228 { 1229 DSLOG(("DSound: Warning: Ring buffer full, skipping to record data (overflow #%RU32)\n", pStreamDS->In.cOverruns)); 1230 DSLOG(("DSound: DSound capture buffer currently uses %RU32/%RU32 bytes\n", cbUsed, pStreamDS->cbBufSize)); 1230 1231 pStreamDS->In.cOverruns++; 1231 1232 } … … 2749 2750 PDM_DRVREG_VERSION 2750 2751 }; 2751
Note:
See TracChangeset
for help on using the changeset viewer.