VirtualBox

Changeset 88112 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Mar 12, 2021 8:41:05 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
143255
Message:

Audio,DevHDA: Made PDMAUDIOPCMPROPS_F2B and PDMAUDIOPCMPROPS_B2F work for 5.1 and other frame sizes that aren't a power of two. Rewrote hdaR3StreamDoDmaOutput. Mapping is now done using converter functions rather than the complexity in hdaR3StreamTransfer. Probably fixes some recent goofs in the DMA period heuristics for non-stereo guest streams, I've renamed the members to make it clear what's what. bugref:9890

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm/pdmaudioifs.h

    r88062 r88112  
    689689typedef struct PDMAUDIOPCMPROPS
    690690{
     691/** @todo squeeze cbSample and cChannels into one uint8_t; Add cbFrame. */
    691692    /** Sample width (in bytes). */
    692693    uint8_t     cbSample;
     
    718719/** @name Macros for use with PDMAUDIOPCMPROPS
    719720 * @{ */
    720 /** Initializor for PDMAUDIOPCMPROPS. */
     721/** Initializer for PDMAUDIOPCMPROPS.
     722 * @todo /PDMAUDIOPCMPROPS_INITIALIZOR/PDMAUDIOPCMPROPS_INITIALIZER/ */
    721723#define PDMAUDIOPCMPROPS_INITIALIZOR(a_cBytes, a_fSigned, a_cCannels, a_uHz, a_cShift, a_fSwapEndian) \
    722724    { a_cBytes, a_cCannels, a_cShift, a_fSigned, a_fSwapEndian, a_uHz }
    723725/** Calculates the cShift value of given sample bits and audio channels.
    724  * @note Does only support mono/stereo channels for now. */
    725 #define PDMAUDIOPCMPROPS_MAKE_SHIFT_PARMS(cBytes, cChannels)    ((cChannels == 2) + (cBytes / 2))
     726 * @note This only works when the frame size is a
     727 * Does only support mono/stereo channels for now, for non-stereo/mono we
     728 *       returns a special value which the two conversion functions detect
     729 *       and make them fall back on cbSample * cChannels. */
     730#define PDMAUDIOPCMPROPS_MAKE_SHIFT_PARMS(cbSample, cChannels) \
     731    ( RT_IS_POWER_OF_TWO((unsigned)((cChannels) * (cbSample))) \
     732      ? (uint8_t)(ASMBitFirstSetU32((unsigned)((cChannels) * (cbSample))) - 1) : (uint8_t)UINT8_MAX )
    726733/** Calculates the cShift value of a PDMAUDIOPCMPROPS structure. */
    727 #define PDMAUDIOPCMPROPS_MAKE_SHIFT(pProps)     PDMAUDIOPCMPROPS_MAKE_SHIFT_PARMS((pProps)->cbSample, (pProps)->cChannels)
     734#define PDMAUDIOPCMPROPS_MAKE_SHIFT(pProps) \
     735    PDMAUDIOPCMPROPS_MAKE_SHIFT_PARMS((pProps)->cbSample, (pProps)->cChannels)
    728736/** Converts (audio) frames to bytes.
    729737 *  Needs the cShift value set correctly, using PDMAUDIOPCMPROPS_MAKE_SHIFT. */
    730 #define PDMAUDIOPCMPROPS_F2B(pProps, frames)    ((frames) << (pProps)->cShift)
     738#define PDMAUDIOPCMPROPS_F2B(pProps, cFrames) \
     739    ( (pProps)->cShift != UINT8_MAX ? (cFrames) << (pProps)->cShift : (cFrames) * ((pProps)->cbSample * (pProps)->cChannels) )
    731740/** Converts bytes to (audio) frames.
    732741 *  Needs the cShift value set correctly, using PDMAUDIOPCMPROPS_MAKE_SHIFT. */
    733 #define PDMAUDIOPCMPROPS_B2F(pProps, cb)        ((cb) >> (pProps)->cShift)
     742#define PDMAUDIOPCMPROPS_B2F(pProps, cb) \
     743    ( (pProps)->cShift != UINT8_MAX ?      (cb) >> (pProps)->cShift : (cb)      / ((pProps)->cbSample * (pProps)->cChannels) )
    734744/** @}   */
    735745
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