Changeset 91506 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Oct 1, 2021 10:21:05 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147195
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.cpp
r91505 r91506 2004 2004 * @note The source file handle must point at the beginning of the PCM audio data to normalize. 2005 2005 */ 2006 static int audioTestFileNormalizePCM(RTFILE hFileSrc, PCPDMAUDIOPCMPROPS pProps, size_t cbSize,2006 static int audioTestFileNormalizePCM(RTFILE hFileSrc, PCPDMAUDIOPCMPROPS pProps, uint64_t cbSize, 2007 2007 double dbNormalizePercent, RTFILE hFileDst, double *pdbRatio) 2008 2008 { … … 2019 2019 } 2020 2020 else 2021 AssertReturn(PDMAudioPropsIsSizeAligned(pProps, cbSize), VERR_INVALID_PARAMETER);2021 AssertReturn(PDMAudioPropsIsSizeAligned(pProps, (uint32_t)cbSize), VERR_INVALID_PARAMETER); 2022 2022 2023 2023 uint64_t offStart = RTFileTell(hFileSrc); … … 2039 2039 AssertRCBreak(rc); 2040 2040 2041 AssertBreak(PDMAudioPropsIsSizeAligned(pProps, cbRead));2041 AssertBreak(PDMAudioPropsIsSizeAligned(pProps, (uint32_t)cbRead)); 2042 2042 2043 2043 switch (pProps->cbSampleX) … … 2143 2143 */ 2144 2144 static int audioTestObjFileNormalizeEx(PAUDIOTESTVERIFYJOB pVerJob, 2145 PAUDIOTESTOBJINT pObj, PPDMAUDIOPCMPROPS pProps, size_t cbSize, double dbNormalizePercent)2145 PAUDIOTESTOBJINT pObj, PPDMAUDIOPCMPROPS pProps, uint64_t cbSize, double dbNormalizePercent) 2146 2146 { 2147 2147 /* Store normalized file into a temporary file. */
Note:
See TracChangeset
for help on using the changeset viewer.