Home | History | Annotate | Download | only in lib_src

Lines Matching refs:audio

7  * Contains common math routines for the various audio engines.
91 macros for other audio sample related math.
120 Multiply the signed audio sample by the unsigned fraction.
121 - a is the signed audio sample
125 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
128 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
143 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
146 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
292 /* we use 16-bits in the PC per audio sample */
303 #define MULT_AUDIO_DRIVE(audio,drive) /*lint -e(702) <avoid divide for performance>*/ \
306 ((EAS_I32)(audio)) * ((EAS_I32)(drive)) \