Changeset 60990 in vbox
- Timestamp:
- May 15, 2016 5:58:13 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r60847 r60990 2743 2743 * NULL audio driver. */ 2744 2744 #define VERR_AUDIO_BACKEND_INIT_FAILED (-6600) 2745 /** No free input streams. */ 2746 #define VERR_AUDIO_NO_FREE_INPUT_STREAMS (-6601) 2745 2747 /** @} */ 2746 2748 -
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.