VirtualBox

Changeset 73596 in vbox


Ignore:
Timestamp:
Aug 9, 2018 5:27:04 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
124237
Message:

Audio/DrvHostValidationKit: Build fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvHostValidationKit.cpp

    r73381 r73596  
    66
    77/*
    8  * Copyright (C) 2016-2017 Oracle Corporation
     8 * Copyright (C) 2016-2018 Oracle Corporation
    99 *
    1010 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    129129                               PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq)
    130130{
    131     RT_NOREF(pDrv, pStreamDbg, pCfgReq);
    132 
    133     if (pCfgAcq)
    134         pCfgAcq->cfPeriod = _1K;
     131    RT_NOREF(pDrv, pStreamDbg, pCfgReq, pCfgAcq);
    135132
    136133    return VINF_SUCCESS;
     
    141138                                PPDMAUDIOSTREAMCFG pCfgReq, PPDMAUDIOSTREAMCFG pCfgAcq)
    142139{
    143     RT_NOREF(pDrv);
     140    RT_NOREF(pDrv, pCfgAcq);
    144141
    145142    int rc = VINF_SUCCESS;
     
    148145    pStreamDbg->uSamplesSinceStarted = 0;
    149146    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);
    151148    pStreamDbg->Out.pu8PlayBuffer = (uint8_t *)RTMemAlloc(pStreamDbg->Out.cbPlayBuffer);
    152149    if (!pStreamDbg->Out.pu8PlayBuffer)
     
    181178                size_t cch;
    182179                char szTimingInfo[128];
    183                 cch = RTStrPrintf(szTimingInfo, sizeof(szTimingInfo), "# %dHz %dch %dbps\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);
    185182
    186183                RTFileWrite(pStreamDbg->hFileTiming, szTimingInfo, cch, NULL);
     
    189186        else
    190187            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);
    197188    }
    198189
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette