Home | History | Annotate | Download | only in src

Lines Matching defs:Right

85     LVM_INT32       Right;                                      /* Right sample */
126 Right = *pStSrc++; /* Get the right sample */
137 Right += Mono;
146 HighWord = (Vol_Mult * (Right >> 16)); /* signed long (Right) by unsigned short (Vol_Mult) multiply */
147 LowWord = (Vol_Mult * (Right & 0xffff));
148 Right = (HighWord + (LowWord >> 16)) << (Vol_Shift);
150 *pDst++ = Right;
156 AbsPeak = (Abs_32(Left)>Abs_32(Right)) ? Abs_32(Left) : Abs_32(Right); /* Get the absolute peak */