Changeset 88005 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 8, 2021 11:58:47 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143128
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r88004 r88005 940 940 pStream->szName, DrvAudioHlpAudDirToStr(pStream->enmDir))); 941 941 942 AssertMsg(DrvAudioHlpIsBytesAligned( cbBuf, &pStream->Guest.Cfg.Props),942 AssertMsg(DrvAudioHlpIsBytesAligned(&pStream->Guest.Cfg.Props, cbBuf), 943 943 ("Stream '%s' got a non-frame-aligned write (%RU32 bytes)\n", pStream->szName, cbBuf)); 944 944 -
trunk/src/VBox/Devices/Audio/HDAStream.cpp
r88004 r88005 532 532 if (cbTransferHeuristics >= 8) 533 533 { 534 ASSERT_GUEST_LOGREL_MSG(DrvAudioHlpIsBytesAligned( cbTransferHeuristics, &pStreamR3->State.Mapping.PCMProps),534 ASSERT_GUEST_LOGREL_MSG(DrvAudioHlpIsBytesAligned(&pStreamR3->State.Mapping.PCMProps, cbTransferHeuristics), 535 535 ("We arrived at a misaligned transfer size for stream #%RU8: %#x (%u)\n", 536 536 uSD, cbTransferHeuristics, cbTransferHeuristics)); … … 549 549 pStreamShared->State.cbTransferSize = cbTransferHeuristics; 550 550 pStreamShared->State.cbTransferChunk = cbTransferHeuristics; 551 ASSERT_GUEST_LOGREL_MSG(DrvAudioHlpIsBytesAligned( cbTransferHeuristics, &pStreamR3->State.Mapping.PCMProps),551 ASSERT_GUEST_LOGREL_MSG(DrvAudioHlpIsBytesAligned(&pStreamR3->State.Mapping.PCMProps, cbTransferHeuristics), 552 552 ("We arrived at a misaligned transfer size for stream #%RU8: %#x (%u)\n", 553 553 uSD, cbTransferHeuristics, cbTransferHeuristics));
Note:
See TracChangeset
for help on using the changeset viewer.