Changeset 58901 in vbox
- Timestamp:
- Nov 27, 2015 1:11:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r58900 r58901 541 541 /** Current offset in DMA buffer (in bytes).*/ 542 542 uint32_t u32BufOff; 543 uint8_t Padding; 543 544 } HDABDLESTATE, *PHDABDLESTATE; 544 545 … … 575 576 * maximum (cBDLE) is reached. */ 576 577 uint16_t uCurBDLE; 578 uint8_t Padding0; 577 579 /** Array of BDLEs. */ 578 580 R3PTRTYPE(PHDABDLE) paBDLE; 581 uint8_t Padding1[7]; 579 582 } HDASTREAMSTATE, *PHDASTREAMSTATE; 580 583 … … 589 592 /** Stream number (SDn). */ 590 593 uint8_t u8Strm; 594 uint8_t Padding0[4]; 591 595 /** DMA base address (SDnBDPU - SDnBDPL). */ 592 596 uint64_t u64BaseDMA; … … 604 608 /** Last Valid Index (SDnLVI). */ 605 609 uint16_t u16LVI; 610 uint8_t Padding1[4]; 606 611 /** Internal state of this stream. */ 607 612 HDASTREAMSTATE State; … … 2506 2511 LogFlowFunc(("[SD%RU8]: cbInc=%RU32\n", pStrmSt->u8Strm, cbInc)); 2507 2512 2508 Assert(cbInc <= pStrmSt->u16FIFOS + 1);2513 Assert(cbInc <= pStrmSt->u16FIFOS); 2509 2514 2510 2515 PHDABDLE pBDLE = hdaStreamGetCurrentBDLE(pThis, pStrmSt); … … 2743 2748 } 2744 2749 2745 Assert(cbWritten <= pStrmSt->u16FIFOS + 1);2750 Assert(cbWritten <= pStrmSt->u16FIFOS); 2746 2751 2747 2752 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.