Changeset 88112 in vbox for trunk/include/VBox
- Timestamp:
- Mar 12, 2021 8:41:05 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143255
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r88062 r88112 689 689 typedef struct PDMAUDIOPCMPROPS 690 690 { 691 /** @todo squeeze cbSample and cChannels into one uint8_t; Add cbFrame. */ 691 692 /** Sample width (in bytes). */ 692 693 uint8_t cbSample; … … 718 719 /** @name Macros for use with PDMAUDIOPCMPROPS 719 720 * @{ */ 720 /** Initializor for PDMAUDIOPCMPROPS. */ 721 /** Initializer for PDMAUDIOPCMPROPS. 722 * @todo /PDMAUDIOPCMPROPS_INITIALIZOR/PDMAUDIOPCMPROPS_INITIALIZER/ */ 721 723 #define PDMAUDIOPCMPROPS_INITIALIZOR(a_cBytes, a_fSigned, a_cCannels, a_uHz, a_cShift, a_fSwapEndian) \ 722 724 { a_cBytes, a_cCannels, a_cShift, a_fSigned, a_fSwapEndian, a_uHz } 723 725 /** 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 ) 726 733 /** 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) 728 736 /** Converts (audio) frames to bytes. 729 737 * 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) ) 731 740 /** Converts bytes to (audio) frames. 732 741 * 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) ) 734 744 /** @} */ 735 745
Note:
See TracChangeset
for help on using the changeset viewer.