Changeset 40111 in vbox
- Timestamp:
- Feb 14, 2012 1:49:30 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76252
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevCodec.cpp
r40110 r40111 1265 1265 Assert((CODEC_CAD(cmd) == pState->id)); 1266 1266 Assert(CODEC_NID(cmd) == 1 /* AFG */); 1267 if(CODEC_NID(cmd) == 1 /* AFG */) 1267 if( CODEC_NID(cmd) == 1 /* AFG */ 1268 && pState->pfnCodecNodeReset) 1268 1269 { 1269 1270 uint8_t i; … … 1272 1273 for (i = 0; i < pState->cTotalNodes; ++i) 1273 1274 { 1274 if (pState->pfnCodecNodeReset) 1275 pState->pfnCodecNodeReset(pState, i, &pState->pNodes[i]); 1275 pState->pfnCodecNodeReset(pState, i, &pState->pNodes[i]); 1276 1276 } 1277 1277 pState->fInReset = false;
Note:
See TracChangeset
for help on using the changeset viewer.