Changeset 74033 in vbox for trunk/src/VBox
- Timestamp:
- Sep 3, 2018 9:43:19 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r74010 r74033 2401 2401 2402 2402 /* Note: cbHstStrm will contain the size of the data the backend needs to operate on. */ 2403 size_t cbHstStrm = 0;2403 size_t cbHstStrm; 2404 2404 if (pCfgHost->enmDir == PDMAUDIODIR_IN) 2405 2405 { 2406 2406 if (!pThis->In.cStreamsFree) 2407 LogFunc(("Warning: No more input streams free to use\n")); 2407 { 2408 LogFlowFunc(("Maximum number of host input streams reached\n")); 2409 RC_BREAK(VERR_AUDIO_NO_FREE_INPUT_STREAMS); 2410 } 2408 2411 2409 2412 cbHstStrm = pThis->BackendCfg.cbStreamIn;
Note:
See TracChangeset
for help on using the changeset viewer.