Lines Matching defs:dstU
157 static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width)
161 dstU[i] = (FFMIN(dstU[i], 30775) * 4663 - 9289992) >> 12; // -264
166 static void chrRangeFromJpeg_c(int16_t *dstU, int16_t *dstV, int width)
170 dstU[i] = (dstU[i] * 1799 + 4081085) >> 11; // 1469
192 int32_t *dstU = (int32_t *) _dstU;
195 dstU[i] = (FFMIN(dstU[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264
203 int32_t *dstU = (int32_t *) _dstU;
206 dstU[i] = (dstU[i] * 1799 + (4081085 << 4)) >> 11; // 1469