VirtualBox

Changeset 94820 in vbox for trunk/src/VBox


Ignore:
Timestamp:
May 4, 2022 1:17:38 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
151213
Message:

Audio/SB16: Try fixing SSM load assertions when stored PCM properties are 0 (or not valid).

File:
1 edited

Legend:

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

    r93115 r94820  
    24472447static int sb16Load(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, PSB16STATE pThis)
    24482448{
     2449    unsigned const idxStream = SB16_IDX_OUT; /* The one and only stream we have right now. */
     2450
    24492451    PCPDMDEVHLPR3 pHlp  = pDevIns->pHlpR3;
    2450     PSB16STREAM pStream = &pThis->aStreams[SB16_IDX_OUT]; /* The saved state only contains the one-and-only output stream. */
     2452    PSB16STREAM pStream = &pThis->aStreams[idxStream]; /* The saved state only contains the one-and-only output stream. */
    24512453    int rc;
    24522454
     
    24652467    pHlp->pfnSSMGetS32(pSSM, &pThis->dsp_out_data_len);
    24662468
    2467     rc = pHlp->pfnSSMGetS32(pSSM, &i32Tmp);                     /* Output stream: Numer of channels. */
     2469    rc = pHlp->pfnSSMGetS32(pSSM, &i32Tmp);                     /* Output stream: Number of channels. */
    24682470    AssertRCReturn(rc, rc);
    2469     PDMAudioPropsSetChannels(&pStream->Cfg.Props, i32Tmp);
     2471    AssertReturn((uint32_t)i32Tmp <= 1, VERR_INVALID_PARAMETER); /* Paranoia. */
     2472    if (i32Tmp) /* PDMAudioPropsSetChannels() will assert if channels are 0 (will be re-set on DMA run command). */
     2473        PDMAudioPropsSetChannels(&pStream->Cfg.Props, (uint8_t)i32Tmp);
    24702474    pHlp->pfnSSMGetS32(pSSM, &i32Tmp);                          /* Output stream: Signed format bit. */
    24712475    pStream->Cfg.Props.fSigned = i32Tmp != 0;
    24722476    rc = pHlp->pfnSSMGetS32(pSSM, &i32Tmp);                     /* Output stream: Sample size in bits. */
    24732477    AssertRCReturn(rc, rc);
    2474     PDMAudioPropsSetSampleSize(&pStream->Cfg.Props, i32Tmp / 8);
     2478    if (i32Tmp) /* PDMAudioPropsSetSampleSize() will assert if sample size is 0 (will be re-set on DMA run command). */
     2479        PDMAudioPropsSetSampleSize(&pStream->Cfg.Props, (uint8_t)(i32Tmp / 8));
    24752480
    24762481    pHlp->pfnSSMSkip  (pSSM, sizeof(int32_t));                  /* Legacy; was PDMAUDIOFMT, unused now. */
    24772482    pHlp->pfnSSMGetS32(pSSM, &pStream->dma_auto);
    2478     pHlp->pfnSSMGetS32(pSSM, &pThis->aStreams[SB16_IDX_OUT].cbDmaBlockSize);
     2483    pHlp->pfnSSMGetS32(pSSM, &pStream->cbDmaBlockSize);
    24792484    pHlp->pfnSSMGetS32(pSSM, &pStream->fifo);
    24802485    pHlp->pfnSSMGetS32(pSSM, &i32Tmp); pStream->Cfg.Props.uHz = i32Tmp;
     
    25182523
    25192524    if (fStreamEnabled)
     2525    {
     2526        /* Sanity: If stream is going be enabled, PCM props must be valid. Otherwise the saved state is borked somehow. */
     2527        AssertMsgReturn(AudioHlpPcmPropsAreValid(&pStream->Cfg.Props),
     2528                        ("PCM properties for stream #%RU8 are invalid\n", idxStream), VERR_INVALID_PARAMETER);
    25202529        sb16StreamControl(pDevIns, pThis, pStream, true /* fRun */);
     2530    }
    25212531
    25222532    /* Update the master (mixer) and PCM out volumes. */
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