Changeset 87638 in vbox
- Timestamp:
- Feb 8, 2021 1:36:18 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142675
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/HDAStream.cpp
r87604 r87638 1086 1086 1087 1087 Assert(cbToProcess); /* Nothing to process when there should be data. Accounting bug? */ 1088 AssertStmt(cbToProcess <= cbToProcessMax, cbToProcess = cbToProcessMax); /* More data to process than maximum allowed. */ 1088 1089 /* More data to process than maximum allowed? */ 1090 #ifdef HDA_STRICT 1091 AssertStmt(cbToProcess <= cbToProcessMax, cbToProcess = cbToProcessMax); 1092 #else 1093 if (cbToProcess > cbToProcessMax) 1094 cbToProcess = cbToProcessMax; 1095 #endif 1089 1096 1090 1097 uint32_t cbProcessed = 0;
Note:
See TracChangeset
for help on using the changeset viewer.