Searched refs:yuvToRgbx (Results 1 – 3 of 3) sorted by relevance
/packages/services/Car/cpp/evs/support_library/ |
D | FormatConvert.cpp | 40 static uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function 80 rowDest[c] = yuvToRgbx(rowY[c], rowUV[uCol], rowUV[vCol]); in copyNV21toRGB32() 111 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c]); in copyYV12toRGB32() 135 *(dst + 0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32() 136 *(dst + 1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
|
/packages/services/Car/cpp/evs/apps/default/src/ |
D | FormatConvert.cpp | 37 static uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function 77 rowDest[c] = yuvToRgbx(rowY[c], rowUV[uCol], rowUV[vCol]); in copyNV21toRGB32() 108 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c]); in copyYV12toRGB32() 132 *(dst + 0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32() 133 *(dst + 1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
|
/packages/services/Car/cpp/evs/manager/1.1/emul/ |
D | EvsEmulatedCamera.cpp | 39 uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function 80 *(dst + 0) = yuvToRgbx(Y1, U, V); in fillRGBAFromYUYV() 81 *(dst + 1) = yuvToRgbx(Y2, U, V); in fillRGBAFromYUYV()
|