Changeset 60990 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- May 15, 2016 5:58:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r60925 r60990 845 845 { 846 846 LogFlowFunc(("No more input streams free to use, bailing out\n")); 847 return VERR_ NO_MORE_HANDLES;847 return VERR_AUDIO_NO_FREE_INPUT_STREAMS; 848 848 } 849 849 … … 866 866 int rc; 867 867 868 do 868 do /* goto avoidance */ 869 869 { 870 870 uint32_t cSamples = 0; 871 871 rc = pThis->pHostDrvAudio->pfnInitIn 872 872 ? pThis->pHostDrvAudio->pfnInitIn(pThis->pHostDrvAudio, pHstStrmIn, 873 pCfg, pCfg->DestSource.Source, &cSamples) : VINF_SUCCESS; 873 pCfg, pCfg->DestSource.Source, &cSamples) 874 : VINF_SUCCESS; 874 875 if (RT_FAILURE(rc)) 875 876 {
Note:
See TracChangeset
for help on using the changeset viewer.