Lines Matching defs:dstV
157 static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width)
162 dstV[i] = (FFMIN(dstV[i], 30775) * 4663 - 9289992) >> 12; // -264
166 static void chrRangeFromJpeg_c(int16_t *dstU, int16_t *dstV, int width)
171 dstV[i] = (dstV[i] * 1799 + 4081085) >> 11; // 1469
193 int32_t *dstV = (int32_t *) _dstV;
196 dstV[i] = (FFMIN(dstV[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264
204 int32_t *dstV = (int32_t *) _dstV;
207 dstV[i] = (dstV[i] * 1799 + (4081085 << 4)) >> 11; // 1469