Changeset 59212 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Dec 22, 2015 1:45:26 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104838
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r59192 r59212 3589 3589 for (uint32_t i = 0; i < pStrm->State.cBDLE; i++) 3590 3590 { 3591 rc = SSMR3PutStructEx(pSSM, &pStrm->State.paBDLE[i], sizeof(HDABDLE), 0 /*fFlags*/, g_aSSMBDLEStateFields5, NULL); 3591 rc = SSMR3PutStructEx(pSSM, &pStrm->State.paBDLE[i].State, sizeof(HDABDLESTATE), 3592 0 /*fFlags*/, g_aSSMBDLEStateFields5, NULL); 3592 3593 AssertRCReturn(rc, rc); 3593 3594 } … … 3673 3674 /* Since version 4 we store the register count to stay flexible. */ 3674 3675 case HDA_SSM_VERSION_4: 3676 case HDA_SSM_VERSION_5: 3675 3677 case HDA_SSM_VERSION: 3676 3678 rc = SSMR3GetU32(pSSM, &cRegs); AssertRCReturn(rc, rc); … … 3759 3761 3760 3762 /* Since v5 we support flexible stream and BDLE counts. */ 3763 case HDA_SSM_VERSION_5: 3761 3764 case HDA_SSM_VERSION: 3762 3765 { … … 3794 3797 } 3795 3798 3799 RT_BZERO(pStrm, sizeof(HDASTREAM)); 3796 3800 rc = SSMR3GetStructEx(pSSM, &pStrm->State, sizeof(HDASTREAMSTATE), 0 /* fFlags */, g_aSSMStreamStateFields5, NULL); 3797 3801 AssertRCBreak(rc); … … 3800 3804 AssertRCBreak(rc); 3801 3805 3802 /* Load BDLE states. */ 3803 for (uint32_t a = 0; a < pStrm->State.cBDLE; a++) 3806 if (uVersion == HDA_SSM_VERSION_5) 3804 3807 { 3805 rc = SSMR3GetStructEx(pSSM, &pStrm->State.paBDLE[a].State, sizeof(HDABDLESTATE),3806 0 /* fFlags */, g_aSSMBDLEStateFields5, NULL);3808 /* v5 did not save the BDLE state correctly, so skip. */ 3809 rc = SSMR3Skip(pSSM, 0x120 /* sizeof(HDABLDE) in v5 */); 3807 3810 AssertRCBreak(rc); 3811 } 3812 else 3813 { 3814 /* Load BDLE states. */ 3815 for (uint32_t a = 0; a < pStrm->State.cBDLE; a++) 3816 { 3817 rc = SSMR3GetStructEx(pSSM, &pStrm->State.paBDLE[a].State, sizeof(HDABDLESTATE), 3818 0 /* fFlags */, g_aSSMBDLEStateFields5, NULL); 3819 AssertRCBreak(rc); 3820 } 3808 3821 } 3809 3822 -
trunk/src/VBox/Devices/Audio/DevIchHdaCodec.h
r58900 r59212 131 131 int hdaCodecOpenStream(PHDACODEC pThis, PDMAUDIORECSOURCE enmRecSource, PDMAUDIOSTREAMCFG *pAudioSettings); 132 132 133 #define HDA_SSM_VERSION 5 133 #define HDA_SSM_VERSION 6 134 /** Introduced dynamic number of streams + stream identifiers for serialization. 135 * Bug: Did not save the BDLE states correctly. 136 * Those will be skipped on load then. */ 137 #define HDA_SSM_VERSION_5 5 138 /** Since this version the number of MMIO registers can be flexible. */ 139 #define HDA_SSM_VERSION_4 4 140 #define HDA_SSM_VERSION_3 3 141 #define HDA_SSM_VERSION_2 2 134 142 #define HDA_SSM_VERSION_1 1 135 #define HDA_SSM_VERSION_2 2136 #define HDA_SSM_VERSION_3 3137 /* Since this version the number of MMIO registers can be flexible. */138 #define HDA_SSM_VERSION_4 4139 143 140 144 # ifdef VBOX_WITH_HDA_CODEC_EMU
Note:
See TracChangeset
for help on using the changeset viewer.