Changeset 70321 in vbox
- Timestamp:
- Dec 22, 2017 4:21:59 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/HDAStream.cpp
r70317 r70321 888 888 if (cbDMAToWrite) 889 889 { 890 LogRel2(("HDA: FIFO underflow for stream #%RU8 (%RU32 bytes outstanding)\n", pStream->u8SD, cbDMAToWrite)); 891 890 892 Assert(cbChunk == cbDMAWritten + cbDMAToWrite); 891 893 memset((uint8_t *)abChunk + cbDMAWritten, 0, cbDMAToWrite); … … 911 913 if (cbDMALeft > RTCircBufFree(pCircBuf)) 912 914 { 915 LogRel2(("HDA: FIFO overflow for stream #%RU8 (%RU32 bytes outstanding)\n", 916 pStream->u8SD, cbDMALeft - RTCircBufFree(pCircBuf))); 917 913 918 /* Try to read as much as possible. */ 914 919 cbDMALeft = (uint32_t)RTCircBufFree(pCircBuf);
Note:
See TracChangeset
for help on using the changeset viewer.