Changeset 76708 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Jan 8, 2019 3:36:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r76706 r76708 1453 1453 DrvAudioHlpFramesToMilli(cfLive, &pStream->Host.Cfg.Props), uLivePercent, pStream->fThresholdReached)); 1454 1454 1455 /* Has the treshold been reached (e.g. are we in playing stage) and we now have less live samples 1456 * then time which has been passed? Then enter the buffering stage again. */ 1455 /* Has the treshold been reached (e.g. are we in playing stage) and we now have no live samples to process? */ 1457 1456 if ( pStream->fThresholdReached 1458 && cfLive < cfPassedReal)1457 && cfLive == 0) 1459 1458 { 1460 1459 LogRel2(("Audio: Buffer underrun for stream '%s' occurred (%RU64ms passed but only %RU64ms in buffer)\n",
Note:
See TracChangeset
for help on using the changeset viewer.