Changeset 94820 in vbox for trunk/src/VBox
- Timestamp:
- May 4, 2022 1:17:38 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151213
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Devices/Audio/DevSB16.cpp ¶
r93115 r94820 2447 2447 static int sb16Load(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, PSB16STATE pThis) 2448 2448 { 2449 unsigned const idxStream = SB16_IDX_OUT; /* The one and only stream we have right now. */ 2450 2449 2451 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. */ 2451 2453 int rc; 2452 2454 … … 2465 2467 pHlp->pfnSSMGetS32(pSSM, &pThis->dsp_out_data_len); 2466 2468 2467 rc = pHlp->pfnSSMGetS32(pSSM, &i32Tmp); /* Output stream: Num er of channels. */2469 rc = pHlp->pfnSSMGetS32(pSSM, &i32Tmp); /* Output stream: Number of channels. */ 2468 2470 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); 2470 2474 pHlp->pfnSSMGetS32(pSSM, &i32Tmp); /* Output stream: Signed format bit. */ 2471 2475 pStream->Cfg.Props.fSigned = i32Tmp != 0; 2472 2476 rc = pHlp->pfnSSMGetS32(pSSM, &i32Tmp); /* Output stream: Sample size in bits. */ 2473 2477 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)); 2475 2480 2476 2481 pHlp->pfnSSMSkip (pSSM, sizeof(int32_t)); /* Legacy; was PDMAUDIOFMT, unused now. */ 2477 2482 pHlp->pfnSSMGetS32(pSSM, &pStream->dma_auto); 2478 pHlp->pfnSSMGetS32(pSSM, &p This->aStreams[SB16_IDX_OUT].cbDmaBlockSize);2483 pHlp->pfnSSMGetS32(pSSM, &pStream->cbDmaBlockSize); 2479 2484 pHlp->pfnSSMGetS32(pSSM, &pStream->fifo); 2480 2485 pHlp->pfnSSMGetS32(pSSM, &i32Tmp); pStream->Cfg.Props.uHz = i32Tmp; … … 2518 2523 2519 2524 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); 2520 2529 sb16StreamControl(pDevIns, pThis, pStream, true /* fRun */); 2530 } 2521 2531 2522 2532 /* Update the master (mixer) and PCM out volumes. */
Note:
See TracChangeset
for help on using the changeset viewer.