- Timestamp:
- Aug 24, 2018 4:13:10 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostValidationKit.cpp
r73877 r73878 128 128 129 129 130 static int debugCreateStreamIn(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg,130 static int vakitCreateStreamIn(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg, 131 131 PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq) 132 132 { … … 137 137 138 138 139 static int debugCreateStreamOut(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg,139 static int vakitCreateStreamOut(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg, 140 140 PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq) 141 141 { … … 211 211 int rc; 212 212 if (pCfgReq->enmDir == PDMAUDIODIR_IN) 213 rc = debugCreateStreamIn( pDrv, pStreamDbg, pCfgReq, pCfgAcq);213 rc = vakitCreateStreamIn( pDrv, pStreamDbg, pCfgReq, pCfgAcq); 214 214 else 215 rc = debugCreateStreamOut(pDrv, pStreamDbg, pCfgReq, pCfgAcq);215 rc = vakitCreateStreamOut(pDrv, pStreamDbg, pCfgReq, pCfgAcq); 216 216 217 217 if (RT_SUCCESS(rc)) … … 266 266 int rc2 = DrvAudioHlpFileWrite(pStreamDbg->pFile, pvBuf, cxBuf, 0 /* fFlags */); 267 267 if (RT_FAILURE(rc2)) 268 LogRel((" DebugAudio: Writing output failed with %Rrc\n", rc2));268 LogRel(("VaKitAudio: Writing output failed with %Rrc\n", rc2)); 269 269 270 270 *pcxWritten = cxBuf; … … 291 291 292 292 293 static int debugDestroyStreamIn(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg)293 static int vakitDestroyStreamIn(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg) 294 294 { 295 295 RT_NOREF(pDrv, pStreamDbg); … … 298 298 299 299 300 static int debugDestroyStreamOut(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg)300 static int vakitDestroyStreamOut(PDRVHOSTVAKITAUDIO pDrv, PVAKITAUDIOSTREAM pStreamDbg) 301 301 { 302 302 RT_NOREF(pDrv); … … 334 334 int rc; 335 335 if (pStreamDbg->pCfg->enmDir == PDMAUDIODIR_IN) 336 rc = debugDestroyStreamIn (pDrv, pStreamDbg);336 rc = vakitDestroyStreamIn (pDrv, pStreamDbg); 337 337 else 338 rc = debugDestroyStreamOut(pDrv, pStreamDbg);338 rc = vakitDestroyStreamOut(pDrv, pStreamDbg); 339 339 340 340 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.