Home
last modified time | relevance | path

Searched refs:yuvToRgbx (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/cpp/evs/support_library/
DFormatConvert.cpp43 static uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function
89 rowDest[c] = yuvToRgbx(rowY[c], rowUV[uCol], rowUV[vCol]); in copyNV21toRGB32()
123 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c]); in copyYV12toRGB32()
149 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32()
150 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
/packages/services/Car/cpp/evs/apps/default/
DFormatConvert.cpp40 static uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function
86 rowDest[c] = yuvToRgbx(rowY[c], rowUV[uCol], rowUV[vCol]); in copyNV21toRGB32()
120 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c]); in copyYV12toRGB32()
146 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32()
147 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
/packages/services/Car/cpp/evs/manager/1.1/emul/
DEvsEmulatedCamera.cpp35 uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function
83 *(dst+0) = yuvToRgbx(Y1, U, V); in fillRGBAFromYUYV()
84 *(dst+1) = yuvToRgbx(Y2, U, V); in fillRGBAFromYUYV()