Changeset 76699 in vbox
- Timestamp:
- Jan 8, 2019 9:54:53 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r76697 r76699 897 897 898 898 AssertMsg(pStream->enmDir == PDMAUDIODIR_OUT, 899 ("Stream '%s' is not an output stream and therefore cannot be written to (direction is 0x%x)\n", 900 pStream->szName, pStream->enmDir)); 899 ("Stream '%s' is not an output stream and therefore cannot be written to (direction is '%s')\n", 900 pStream->szName, DrvAudioHlpAudDirToStr(pStream->enmDir))); 901 902 AssertMsg(DrvAudioHlpBytesIsAligned(cbBuf, &pStream->Guest.Cfg.Props), 903 ("Stream '%s' got a non-frame-aligned write (%RU32 bytes)\n", pStream->szName, cbBuf)); 901 904 902 905 uint32_t cbWrittenTotal = 0;
Note:
See TracChangeset
for help on using the changeset viewer.