Home
last modified time | relevance | path

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

/hardware/interfaces/automotive/evs/common/utils/default/
DFormatConvert.cpp46 uint32_t Utils::yuvToRgbx(const unsigned char Y, in yuvToRgbx() function in android::hardware::automotive::evs::common::Utils
103 rowDest[c] = yuvToRgbx(rowY[c], rowUV[uCol], rowUV[vCol], bgrxFormat); in copyNV21toRGB32()
138 rowDest[c] = yuvToRgbx(rowY[c], rowU[c], rowV[c], bgrxFormat); in copyYV12toRGB32()
165 *(dst+0) = yuvToRgbx(Y1, U, V, bgrxFormat); in copyYUYVtoRGB32()
166 *(dst+1) = yuvToRgbx(Y2, U, V, bgrxFormat); in copyYUYVtoRGB32()
/hardware/interfaces/automotive/evs/common/utils/default/include/
DFormatConvert.h87 static uint32_t yuvToRgbx(const unsigned char Y,