Changeset 34062 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Nov 15, 2010 6:05:09 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchIntelHDA.cpp
r34061 r34062 1315 1315 return written; 1316 1316 } 1317 temp = audio_MIN(SDFIFOS(pState, 4) + 1, temp);1318 1317 while (temp) 1319 1318 { 1320 1319 int copied; 1321 to_copy = audio_MIN( temp, 4096U);1320 to_copy = audio_MIN(SDFIFOS(pState, 4) + 1, temp); 1322 1321 PDMDevHlpPhysRead(ICH6_HDASTATE_2_DEVINS(pState), pBdle->u64BdleCviAddr + pBdle->u32BdleCviPos, tmpbuf, to_copy); 1323 1322 copied = AUD_write (OSD0FMT_TO_AUDIO_SELECTOR(pState), tmpbuf, to_copy);
Note:
See TracChangeset
for help on using the changeset viewer.