Home | History | Annotate | Download | only in src

Lines Matching defs:Left

84     LVM_INT32       Left;                                       /* Left sample */
125 Left = *pStSrc++; /* Get the left sample */
136 Left += Mono; /* Mix in the mono signal */
143 HighWord = (Vol_Mult * (Left >> 16)); /* signed long (Left) by unsigned short (Vol_Mult) multiply */
144 LowWord = (Vol_Mult * (Left & 0xffff));
145 Left = (HighWord + (LowWord >> 16)) << (Vol_Shift);
149 *pDst++ = Left; /* Save the results */
156 AbsPeak = (Abs_32(Left)>Abs_32(Right)) ? Abs_32(Left) : Abs_32(Right); /* Get the absolute peak */