Searched refs:pSrcArray (Results 1 – 1 of 1) sorted by relevance
209 int32_t* pSrcArray = reinterpret_cast<int32_t*>(pixels); in ConvertRgbaToYuv() local222 r = (pSrcArray[nIndex] & 0xff0000) >> 16; in ConvertRgbaToYuv()223 g = (pSrcArray[nIndex] & 0xff00) >> 8; in ConvertRgbaToYuv()224 b = (pSrcArray[nIndex] & 0xff) >> 0; in ConvertRgbaToYuv()