Changeset 73596 in vbox
- Timestamp:
- Aug 9, 2018 5:27:04 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124237
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostValidationKit.cpp
r73381 r73596 6 6 7 7 /* 8 * Copyright (C) 2016-201 7Oracle Corporation8 * Copyright (C) 2016-2018 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 129 129 PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq) 130 130 { 131 RT_NOREF(pDrv, pStreamDbg, pCfgReq); 132 133 if (pCfgAcq) 134 pCfgAcq->cfPeriod = _1K; 131 RT_NOREF(pDrv, pStreamDbg, pCfgReq, pCfgAcq); 135 132 136 133 return VINF_SUCCESS; … … 141 138 PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq) 142 139 { 143 RT_NOREF(pDrv );140 RT_NOREF(pDrv, pCfgAcq); 144 141 145 142 int rc = VINF_SUCCESS; … … 148 145 pStreamDbg->uSamplesSinceStarted = 0; 149 146 pStreamDbg->Out.tsLastPlayed = 0; 150 pStreamDbg->Out.cbPlayBuffer = 16 * _1K * PDMAUDIOSTREAMCFG_F2B(pCfgReq, 1); /** @todo Make this configurable? */147 pStreamDbg->Out.cbPlayBuffer = DrvAudioHlpFramesToBytes(pCfgReq->Backend.cfBufferSize, &pCfgReq->Props); 151 148 pStreamDbg->Out.pu8PlayBuffer = (uint8_t *)RTMemAlloc(pStreamDbg->Out.cbPlayBuffer); 152 149 if (!pStreamDbg->Out.pu8PlayBuffer) … … 181 178 size_t cch; 182 179 char szTimingInfo[128]; 183 cch = RTStrPrintf(szTimingInfo, sizeof(szTimingInfo), "# %dHz %dch %db ps\n",184 pCfgReq->Props.uHz, pCfgReq->Props.cChannels, pCfgReq->Props.cBits);180 cch = RTStrPrintf(szTimingInfo, sizeof(szTimingInfo), "# %dHz %dch %dbit\n", 181 pCfgReq->Props.uHz, pCfgReq->Props.cChannels, pCfgReq->Props.cBytes * 8); 185 182 186 183 RTFileWrite(pStreamDbg->hFileTiming, szTimingInfo, cch, NULL); … … 189 186 else 190 187 LogRel(("VaKitAudio: Unable to retrieve temp dir: %Rrc\n", rc)); 191 }192 193 if (RT_SUCCESS(rc))194 {195 if (pCfgAcq)196 pCfgAcq->cfPeriod = PDMAUDIOSTREAMCFG_B2F(pCfgAcq, pStreamDbg->Out.cbPlayBuffer);197 188 } 198 189
Note:
See TracChangeset
for help on using the changeset viewer.