VirtualBox

Changeset 91506 in vbox for trunk/src/VBox/Devices/Audio


Ignore:
Timestamp:
Oct 1, 2021 10:21:05 AM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
147195
Message:

Audio/Validation Kit: Initial implementation of two-pass audio data normalization, which is done before working on the data. Also, a search window has been added when treating / classifying audio data [build fix]. ​bugref:10008

File:
1 edited

Legend:

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

    r91505 r91506  
    20042004 * @note    The source file handle must point at the beginning of the PCM audio data to normalize.
    20052005 */
    2006 static int audioTestFileNormalizePCM(RTFILE hFileSrc, PCPDMAUDIOPCMPROPS pProps, size_t cbSize,
     2006static int audioTestFileNormalizePCM(RTFILE hFileSrc, PCPDMAUDIOPCMPROPS pProps, uint64_t cbSize,
    20072007                                     double dbNormalizePercent, RTFILE hFileDst, double *pdbRatio)
    20082008{
     
    20192019    }
    20202020    else
    2021         AssertReturn(PDMAudioPropsIsSizeAligned(pProps, cbSize), VERR_INVALID_PARAMETER);
     2021        AssertReturn(PDMAudioPropsIsSizeAligned(pProps, (uint32_t)cbSize), VERR_INVALID_PARAMETER);
    20222022
    20232023    uint64_t offStart = RTFileTell(hFileSrc);
     
    20392039        AssertRCBreak(rc);
    20402040
    2041         AssertBreak(PDMAudioPropsIsSizeAligned(pProps, cbRead));
     2041        AssertBreak(PDMAudioPropsIsSizeAligned(pProps, (uint32_t)cbRead));
    20422042
    20432043        switch (pProps->cbSampleX)
     
    21432143 */
    21442144static int audioTestObjFileNormalizeEx(PAUDIOTESTVERIFYJOB pVerJob,
    2145                                        PAUDIOTESTOBJINT pObj, PPDMAUDIOPCMPROPS pProps, size_t cbSize, double dbNormalizePercent)
     2145                                       PAUDIOTESTOBJINT pObj, PPDMAUDIOPCMPROPS pProps, uint64_t cbSize, double dbNormalizePercent)
    21462146{
    21472147    /* Store normalized file into a temporary file. */
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