Home
last modified time | relevance | path

Searched refs:srcPixel (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/cpp/evs/support_library/
DFormatConvert.cpp127 uint32_t srcPixel = *srcWords++; in copyYUYVtoRGB32() local
129 uint8_t Y1 = (srcPixel) & 0xFF; in copyYUYVtoRGB32()
130 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32()
131 uint8_t Y2 = (srcPixel >> 16) & 0xFF; in copyYUYVtoRGB32()
132 uint8_t V = (srcPixel >> 24) & 0xFF; in copyYUYVtoRGB32()
/packages/services/Car/cpp/evs/apps/default/src/
DFormatConvert.cpp124 uint32_t srcPixel = *srcWords++; in copyYUYVtoRGB32() local
126 uint8_t Y1 = (srcPixel) & 0xFF; in copyYUYVtoRGB32()
127 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32()
128 uint8_t Y2 = (srcPixel >> 16) & 0xFF; in copyYUYVtoRGB32()
129 uint8_t V = (srcPixel >> 24) & 0xFF; in copyYUYVtoRGB32()
/packages/services/Car/cpp/evs/sampleDriver/aidl/src/
DbufferCopy.cpp173 uint32_t srcPixel = *src++; in fillYUYVFromUYVY() local
175 uint8_t Y1 = (srcPixel) & 0xFF; in fillYUYVFromUYVY()
176 uint8_t U = (srcPixel >> 8) & 0xFF; in fillYUYVFromUYVY()
177 uint8_t Y2 = (srcPixel >> 16) & 0xFF; in fillYUYVFromUYVY()
178 uint8_t V = (srcPixel >> 24) & 0xFF; in fillYUYVFromUYVY()
/packages/services/Car/cpp/evs/sampleDriver/hidl/
DbufferCopy.cpp213 uint32_t srcPixel = *src++; in fillYUYVFromUYVY() local
215 uint8_t Y1 = (srcPixel) & 0xFF; in fillYUYVFromUYVY()
216 uint8_t U = (srcPixel >> 8) & 0xFF; in fillYUYVFromUYVY()
217 uint8_t Y2 = (srcPixel >> 16) & 0xFF; in fillYUYVFromUYVY()
218 uint8_t V = (srcPixel >> 24) & 0xFF; in fillYUYVFromUYVY()
/packages/services/Car/cpp/evs/manager/1.1/emul/
DEvsEmulatedCamera.cpp72 uint32_t srcPixel = *src++; in fillRGBAFromYUYV() local
74 uint8_t Y1 = (srcPixel) & 0xFF; in fillRGBAFromYUYV()
75 uint8_t U = (srcPixel >> 8) & 0xFF; in fillRGBAFromYUYV()
76 uint8_t Y2 = (srcPixel >> 16) & 0xFF; in fillRGBAFromYUYV()
77 uint8_t V = (srcPixel >> 24) & 0xFF; in fillRGBAFromYUYV()