Changeset 31377 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Aug 5, 2010 3:01:03 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64434
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchIntelHDA.cpp
r31347 r31377 1173 1173 temp -= copied; 1174 1174 written += copied; 1175 //** @todo r=michaln: Should that be '+= written' or '+= copied?' 1176 pState->u32CviPos += written; 1175 pState->u32CviPos += copied; 1177 1176 } 1178 1177 return written; … … 1200 1199 || avail == 0) 1201 1200 return; 1202 //** @todo r=michaln: Why is that 'adc' and not 'dac'? Why is the mask 0x5 and not 0xf? 1203 SDCTL(pState, 4) |= ((pState->Codec.pNodes[2].adc.u32F06_param & (0x5 << 4)) >> 4) << 20; 1201 SDCTL(pState, 4) |= ((pState->Codec.pNodes[2].dac.u32F06_param & (0xf << 4)) >> 4) << 20; 1204 1202 fetch_bd(pState); 1205 1203 while( avail … … 1237 1235 pState->u32Cvi = 0; 1238 1236 } 1239 1237 } 1240 1238 } 1241 1239 fetch_bd(pState);
Note:
See TracChangeset
for help on using the changeset viewer.