Changeset 54947 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Mar 25, 2015 4:52:56 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r54946 r54947 1480 1480 1481 1481 DSLOGREL(("DSound: Found %RU32 host capturing devices\n", pCfg->cMaxHstStrmsIn)); 1482 if (pCfg->cMaxHstStrmsIn == 0) 1483 pCfg->cMaxHstStrmsIn = 1; /* Support at least one stream. */ 1482 if (pCfg->cMaxHstStrmsIn < 2) 1483 { 1484 DSLOGREL(("DSound: Adjusting the number of host capturing devices from %RU32 to 2\n", pCfg->cMaxHstStrmsIn)); 1485 pCfg->cMaxHstStrmsIn = 2; /* Support at least two streams (line in + mic). */ 1486 } 1484 1487 1485 1488 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.