Home | History | Annotate | Download | only in lib_src

Lines Matching refs:gain

65  * Output gain for individual voice
78 EAS_I32 gain;
99 gain = pWTIntFrame->prevGain << 16;
108 /* incremental gain step to prevent zipper noise */
110 gain += gainIncrement;
112 tmp2 = gain >> 16;
114 /* scale sample by gain */
464 * optimizations. It calls the interpolator, filter, and gain routines
535 /* apply gain, and left and right gain */
546 * A C version of the sample interpolation + gain routine, optimized for mono.
562 EAS_I32 gain;
574 /* calculate gain increment */
578 gain = pWTIntFrame->prevGain << 16;
605 gain += gainIncrement;
606 tmp2 = (gain >> SYNTH_UPDATE_PERIOD_IN_BITS);
621 pWTVoice->gain = (EAS_I16)(gain >> SYNTH_UPDATE_PERIOD_IN_BITS);
632 * optimizations. It calls the interpolator, filter, and gain routines