Searched refs:yMult (Results 1 – 1 of 1) sorted by relevance
297 int32_t yMult, b, g, r; in convertYUV420Planar16ToRGBA1010102() local298 yMult = y00 * _y + 512; in convertYUV420Planar16ToRGBA1010102()299 b = (yMult + u_b) / 1024; in convertYUV420Planar16ToRGBA1010102()300 g = (yMult + v_g + u_g) / 1024; in convertYUV420Planar16ToRGBA1010102()301 r = (yMult + v_r) / 1024; in convertYUV420Planar16ToRGBA1010102()307 yMult = y01 * _y + 512; in convertYUV420Planar16ToRGBA1010102()308 b = (yMult + u_b) / 1024; in convertYUV420Planar16ToRGBA1010102()309 g = (yMult + v_g + u_g) / 1024; in convertYUV420Planar16ToRGBA1010102()310 r = (yMult + v_r) / 1024; in convertYUV420Planar16ToRGBA1010102()316 yMult = y10 * _y + 512; in convertYUV420Planar16ToRGBA1010102()[all …]