Changeset 64379 in vbox
- Timestamp:
- Oct 24, 2016 12:20:54 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r64333 r64379 552 552 553 553 PDMAUDIOSTREAMCFG CfgHostAcq; 554 int rc = drvAudioStreamCreateInternalBackend(pThis, pHstStream, pCfgHost, &CfgHostAcq);554 int rc = drvAudioStreamCreateInternalBackend(pThis, pHstStream, pCfgHost, &CfgHostAcq); 555 555 if (RT_FAILURE(rc)) 556 556 return rc; … … 1871 1871 rc = drvAudioStreamInitInternal(pThis, pHstStrm, pCfgHost, pCfgGuest); 1872 1872 if (RT_FAILURE(rc)) 1873 { 1874 LogFlowFunc(("Stream not available (yet)\n")); 1875 rc = VINF_SUCCESS; 1876 } 1873 break; 1877 1874 1878 1875 #ifdef VBOX_WITH_STATISTICS … … 1907 1904 szStatName, STAMUNIT_COUNT, "Total samples played."); 1908 1905 } 1906 else 1907 AssertFailed(); 1909 1908 #endif 1910 1909 … … 2209 2208 PDMDrvHlpSTAMDeregister(pThis->pDrvIns, &pHstStream->Out.StatSamplesPlayed); 2210 2209 } 2210 else 2211 AssertFailed(); 2211 2212 #endif 2212 2213 RTListNodeRemove(&pHstStream->Node); … … 2238 2239 PDMDrvHlpSTAMDeregister(pThis->pDrvIns, &pGstStream->Out.StatSamplesPlayed); 2239 2240 } 2241 else 2242 AssertFailed(); 2240 2243 #endif 2241 2244 RTListNodeRemove(&pGstStream->Node);
Note:
See TracChangeset
for help on using the changeset viewer.