VirtualBox

Changeset 89879 in vbox


Ignore:
Timestamp:
Jun 24, 2021 10:27:09 AM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
145337
Message:

DevHda: Cleaned up pGuestProps/pHostProps in the schedule creation code (they're the same now). bugref:9890

File:
1 edited

Legend:

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

    r89876 r89879  
    215215 * @param   cbMaxPeriod     The max period in guest bytes.
    216216 * @param   idxLastBdle     The last BDLE in the period.
    217  * @param   pHostProps      The host PCM properties.
    218  * @param   pGuestProps     The guest PCM properties.
     217 * @param   pProps          The PCM properties.
    219218 * @param   pcbBorrow       Where to account for bytes borrowed across buffers
    220219 *                          to align scheduling items on frame boundraries.
    221220 */
    222 static int hdaR3StreamAddScheduleItem(PHDASTREAM pStreamShared, uint32_t cbCur, uint32_t cbMaxPeriod, uint32_t idxLastBdle,
    223                                       PCPDMAUDIOPCMPROPS pHostProps, PCPDMAUDIOPCMPROPS pGuestProps, uint32_t *pcbBorrow)
     221static int hdaR3StreamAddScheduleItem(PHDASTREAM pStreamShared, uint32_t cbCur, uint32_t cbMaxPeriod,
     222                                      uint32_t idxLastBdle, PCPDMAUDIOPCMPROPS pProps, uint32_t *pcbBorrow)
    224223{
    225224    /* Check that we've got room (shouldn't ever be a problem). */
     
    252251    }
    253252
    254     uint32_t cbCurAligned = PDMAudioPropsRoundUpBytesToFrame(pGuestProps, cbCur);
     253    uint32_t cbCurAligned = PDMAudioPropsRoundUpBytesToFrame(pProps, cbCur);
    255254    *pcbBorrow = cbCurAligned - cbCur;
    256255
     
    258257    if (cbCurAligned <= cbMaxPeriod)
    259258    {
    260         uint32_t cbHost = PDMAudioPropsFramesToBytes(pHostProps, PDMAudioPropsBytesToFrames(pGuestProps, cbCurAligned));
    261         pStreamShared->State.aSchedule[idx].cbPeriod = cbHost;
     259        pStreamShared->State.aSchedule[idx].cbPeriod = cbCurAligned;
    262260        pStreamShared->State.aSchedule[idx].cLoops   = 1;
    263261    }
     
    269267            cbLoop = cbCurAligned / 2;
    270268        while (cbLoop > cbMaxPeriod);
    271         cbLoop = PDMAudioPropsRoundUpBytesToFrame(pGuestProps, cbLoop);
     269        cbLoop = PDMAudioPropsRoundUpBytesToFrame(pProps, cbLoop);
    272270
    273271        /* Complete the scheduling item. */
    274         uint32_t cbHost = PDMAudioPropsFramesToBytes(pHostProps, PDMAudioPropsBytesToFrames(pGuestProps, cbLoop));
    275         pStreamShared->State.aSchedule[idx].cbPeriod = cbHost;
     272        pStreamShared->State.aSchedule[idx].cbPeriod = cbLoop;
    276273        pStreamShared->State.aSchedule[idx].cLoops   = cbCurAligned / cbLoop;
    277274
     
    283280            pStreamShared->State.aSchedule[idx + 1] = pStreamShared->State.aSchedule[idx];
    284281            idx++;
    285             cbHost = PDMAudioPropsFramesToBytes(pHostProps, PDMAudioPropsBytesToFrames(pGuestProps, cbCurAligned));
    286             pStreamShared->State.aSchedule[idx].cbPeriod = cbHost;
     282            pStreamShared->State.aSchedule[idx].cbPeriod = cbCurAligned;
    287283            pStreamShared->State.aSchedule[idx].cLoops   = 1;
    288284        }
     
    310306 *                              Nibelungen" cycle in one go.
    311307 * @param   cTimerTicksPerSec   The DMA timer frequency.
    312  * @param   pHostProps          The host PCM properties.
    313  * @param   pGuestProps         The guest PCM properties.
     308 * @param   pProps              The PCM properties.
    314309 */
    315310static int hdaR3StreamCreateSchedule(PHDASTREAM pStreamShared, uint32_t cSegments, uint32_t cBufferIrqs, uint32_t cbTotal,
    316                                      uint32_t cbMaxPeriod, uint64_t cTimerTicksPerSec,
    317                                      PCPDMAUDIOPCMPROPS pHostProps, PCPDMAUDIOPCMPROPS pGuestProps)
     311                                     uint32_t cbMaxPeriod, uint64_t cTimerTicksPerSec, PCPDMAUDIOPCMPROPS pProps)
    318312{
    319313    int rc;
     
    343337        if (pStreamShared->State.aBdl[i].fFlags & HDA_BDLE_F_IOC)
    344338        {
    345             rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pHostProps, pGuestProps, &cbBorrow);
     339            rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pProps, &cbBorrow);
    346340            ASSERT_GUEST_RC_RETURN(rc, rc);
    347341
     
    383377        /* Match the BDLEs 1:1 if there are 3 or more and that the smallest one
    384378           is at least 5ms big. */
    385         if (cSegments >= 3 && PDMAudioPropsBytesToMilli(pGuestProps, cbMin) >= 5 /*ms*/)
     379        if (cSegments >= 3 && PDMAudioPropsBytesToMilli(pProps, cbMin) >= 5 /*ms*/)
    386380        {
    387381            for (uint32_t i = 0; i < cSegments; i++)
    388382            {
    389                 rc = hdaR3StreamAddScheduleItem(pStreamShared, pStreamShared->State.aBdl[i].cb, cbMaxPeriod,
    390                                                 i, pHostProps, pGuestProps, &cbBorrow);
     383                rc = hdaR3StreamAddScheduleItem(pStreamShared, pStreamShared->State.aBdl[i].cb, cbMaxPeriod, i, pProps, &cbBorrow);
    391384                ASSERT_GUEST_RC_RETURN(rc, rc);
    392385            }
     
    399392        else
    400393        {
    401             uint32_t const cPeriods = cSegments != 3 && PDMAudioPropsBytesToMilli(pGuestProps, cbCur) >= 4 * 5 /*ms*/
     394            uint32_t const cPeriods = cSegments != 3 && PDMAudioPropsBytesToMilli(pProps, cbCur) >= 4 * 5 /*ms*/
    402395                                    ? 4 : cSegments != 2 ? 3 : 2;
    403             uint32_t const cbPeriod = PDMAudioPropsFloorBytesToFrame(pGuestProps, cbCur / cPeriods);
     396            uint32_t const cbPeriod = PDMAudioPropsFloorBytesToFrame(pProps, cbCur / cPeriods);
    404397            uint32_t       iBdle    = 0;
    405398            uint32_t       offBdle  = 0;
     
    412405                        offBdle -= pStreamShared->State.aBdl[iBdle++].cb;
    413406                    rc = hdaR3StreamAddScheduleItem(pStreamShared, cbPeriod, cbMaxPeriod, offBdle != 0 ? iBdle : iBdle - 1,
    414                                                     pHostProps, pGuestProps, &cbBorrow);
     407                                                    pProps, &cbBorrow);
    415408                }
    416409                else
    417410                    rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur - iPeriod * cbPeriod, cbMaxPeriod, cSegments - 1,
    418                                                     pHostProps, pGuestProps, &cbBorrow);
     411                                                    pProps, &cbBorrow);
    419412                ASSERT_GUEST_RC_RETURN(rc, rc);
    420413            }
     
    434427                break;
    435428        }
    436         rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pHostProps, pGuestProps, &cbBorrow);
     429        rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pProps, &cbBorrow);
    437430        ASSERT_GUEST_RC_RETURN(rc, rc);
    438431
     
    456449            && pStreamShared->State.aSchedule[i].cLoops == 1)
    457450        {
    458             uint32_t const cbFirstHalf = PDMAudioPropsFloorBytesToFrame(pHostProps, pStreamShared->State.aSchedule[i].cbPeriod / 2);
     451            uint32_t const cbFirstHalf = PDMAudioPropsFloorBytesToFrame(pProps, pStreamShared->State.aSchedule[i].cbPeriod / 2);
    459452            uint32_t const cbOtherHalf = pStreamShared->State.aSchedule[i].cbPeriod - cbFirstHalf;
    460453            pStreamShared->State.aSchedule[i].cbPeriod = cbFirstHalf;
     
    475468    LogRel2(("HDA: Stream #%u schedule: %u items, %u prologue\n",
    476469             pStreamShared->u8SD, pStreamShared->State.cSchedule, pStreamShared->State.cSchedulePrologue));
    477     uint64_t const cbHostPerSec = PDMAudioPropsFramesToBytes(pHostProps, pHostProps->uHz);
     470    uint64_t const cbPerSec = PDMAudioPropsFramesToBytes(pProps, pProps->uHz);
    478471    for (uint32_t i = 0; i < pStreamShared->State.cSchedule; i++)
    479472    {
    480         uint64_t const cTicks = ASMMultU64ByU32DivByU32(cTimerTicksPerSec, pStreamShared->State.aSchedule[i].cbPeriod,
    481                                                         cbHostPerSec);
     473        uint64_t const cTicks = ASMMultU64ByU32DivByU32(cTimerTicksPerSec, pStreamShared->State.aSchedule[i].cbPeriod, cbPerSec);
    482474        AssertLogRelMsgReturn((uint32_t)cTicks == cTicks, ("cTicks=%RU64 (%#RX64)\n", cTicks, cTicks), VERR_INTERNAL_ERROR_4);
    483475        pStreamShared->State.aSchedule[i].cPeriodTicks = RT_MAX((uint32_t)cTicks, 16);
     
    637629     * Create a DMA timer schedule.
    638630     */
    639     /** @todo clean up this, pGuestProps and pHostProps are the same now. */
    640631    rc = hdaR3StreamCreateSchedule(pStreamShared, cTransferFragments, cBufferIrqs, (uint32_t)cbTotal,
    641632                                   PDMAudioPropsMilliToBytes(&pCfg->Props, 100 /** @todo make configurable */),
    642                                    PDMDevHlpTimerGetFreq(pDevIns, pStreamShared->hTimer),
    643                                    &pCfg->Props, &pCfg->Props);
     633                                   PDMDevHlpTimerGetFreq(pDevIns, pStreamShared->hTimer), &pCfg->Props);
    644634    if (RT_FAILURE(rc))
    645635        return rc;
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