Searched refs:tempY (Results 1 – 3 of 3) sorted by relevance
/external/opencore/codecs_v2/utilities/colorconvert/src/ |
D | ccrgb16toyuv420.cpp | 231 uint8 *tempY, *tempU, *tempV; in ccrgb16toyuv() local 242 tempY = yuv[0]; in ccrgb16toyuv() 265 *tempY = yuv_value; in ccrgb16toyuv() 278 *(tempY + pitch_dst) = yuv_value; in ccrgb16toyuv() 286 tempY++; in ccrgb16toyuv() 293 *tempY = yuv_value; in ccrgb16toyuv() 306 *(tempY + pitch_dst) = yuv_value; in ccrgb16toyuv() 314 tempY++; in ccrgb16toyuv() 374 tempY += (pitch_dst - width_dst) + pitch_dst; in ccrgb16toyuv() 397 uint8 *tempY, *tempU, *tempV; in ccrgb16toyuv_wo_colorkey() local [all …]
|
D | ccrgb12toyuv420.cpp | 220 uint32 *tempY, *tempU, *tempV; in ccrgb12toyuv() local 258 tempY = (uint32 *)yuv[0] + (offset >> 2); in ccrgb12toyuv() 259 oscl_memset((uint8 *)tempY, 16, size16 - offset); /* pad with zeros */ in ccrgb12toyuv() 269 tempY = (uint32 *)yuv[0]; /* Normal order */ in ccrgb12toyuv() 270 tempU = tempY + ((size16) >> 2); in ccrgb12toyuv() 289 oscl_memset((uint8 *)tempY, 16, i); in ccrgb12toyuv() 290 tempY += (i >> 2); in ccrgb12toyuv() 306 oscl_memset((uint8 *)tempY, 16, i); in ccrgb12toyuv() 307 tempY += (i >> 2); in ccrgb12toyuv() 362 *tempY++ = (yuv_value | in ccrgb12toyuv() [all …]
|
D | ccrgb24toyuv420.cpp | 222 uint8 *tempY, *tempU, *tempV; in ccrgb24toyuv() local 250 tempY = yuv[0] + offset; in ccrgb24toyuv() 251 oscl_memset((uint8 *)tempY, 16, size16 - offset); /* pad with zeros */ in ccrgb24toyuv() 261 tempY = yuv[0]; /* Normal order */ in ccrgb24toyuv() 281 oscl_memset((uint8 *)tempY, 16, i); in ccrgb24toyuv() 282 tempY += i; in ccrgb24toyuv() 304 oscl_memset((uint8 *)tempY, 16, i); in ccrgb24toyuv() 305 tempY += i; in ccrgb24toyuv() 334 … *tempY++ = y_tab[(6616*inputRGB[i] + (inputRGB[i+1] << 16) + 19481 * inputRGB[i+2]) >> 16]; in ccrgb24toyuv() 359 oscl_memset(tempY, 16/* *(tempY-1)*/, width_16 - width); in ccrgb24toyuv() [all …]
|