Home | History | Annotate | Download | only in src

Lines Matching refs:Left

87     LVM_INT32       Left;                                       /* Left sample */
128 Left = *pStSrc++; /* Get the left sample */
139 Left += Mono; /* Mix in the mono signal */
146 HighWord = (Vol_Mult * (Left >> 16)); /* signed long (Left) by unsigned short (Vol_Mult) multiply */
147 LowWord = (Vol_Mult * (Left & 0xffff));
148 Left = (HighWord + (LowWord >> 16)) << (Vol_Shift);
152 *pDst++ = Left; /* Save the results */
159 AbsPeak = (Abs_32(Left)>Abs_32(Right)) ? Abs_32(Left) : Abs_32(Right); /* Get the absolute peak */
211 LVM_FLOAT Left; /* Left sample */
248 Left = *pStSrc++; /* Get the left sample */
256 Left += (Mono * AGC_Mult); /* Mix in the mono signal */
262 Left = Left * Vol_Mult;
264 *pDst++ = Left; /* Save the results */
270 AbsPeak = Abs_Float(Left) > Abs_Float(Right) ? Abs_Float(Left) : Abs_Float(Right);