Home
last modified time | relevance | path

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

/packages/services/Car/evs/app/
DFormatConvert.cpp39 static uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function
85 rowDest[c] = yuvToRgbx(rowY[c], rowUV[uCol], rowUV[vCol]); in copyNV21toRGB32()
119 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c]); in copyYV12toRGB32()
145 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32()
146 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
/packages/services/Car/evs/sampleDriver/
DbufferCopy.cpp47 static uint32_t yuvToRgbx(const unsigned char Y, const unsigned char Uin, const unsigned char Vin) { in yuvToRgbx() function
168 *(dst+0) = yuvToRgbx(Y1, U, V); in fillRGBAFromYUYV()
169 *(dst+1) = yuvToRgbx(Y2, U, V); in fillRGBAFromYUYV()