- Timestamp:
- Dec 29, 2016 11:24:21 AM (8 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r65022 r65026 4678 4678 4679 4679 bool fDone = false; 4680 uint8_t cTransfers = 0; 4680 4681 4681 4682 while (!fDone) … … 4806 4807 else 4807 4808 AssertFailed(); 4808 } 4809 4810 if (++cTransfers > 32) /* Failsafe counter. */ 4811 fDone = true; 4812 4813 } /* while !fDone */ 4809 4814 4810 4815 return rc; -
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r65024 r65026 1260 1260 1261 1261 bool fDone = false; 1262 uint8_t cTransfers = 0; 1262 1263 1263 1264 Log3Func(("[SD%RU8] Started\n", pStream->u8Strm)); … … 1395 1396 AssertFailed(); 1396 1397 1397 if (fDone) 1398 break; 1399 } 1398 if (++cTransfers > 32) /* Failsafe counter. */ 1399 fDone = true; 1400 1401 } /* while !fDone */ 1400 1402 1401 1403 LogFunc(("[SD%RU8] End\n", pStream->u8Strm));
Note:
See TracChangeset
for help on using the changeset viewer.