Searched defs:kBlue5 (Results 1 - 1 of 1) sorted by relevance

/external/qemu/android/camera/
H A Dcamera-format-converters.c53 static const uint16_t kBlue5 = 0xf800; variable
57 static const uint16_t kBlue5 = 0x001f; variable
82 #define B16(rgb) (uint8_t)(((rgb) & kBlue5) >> 11)
86 #define B16_32(rgb) (uint8_t)((((rgb) & kBlue5) >> 8) | (((rgb) & kBlue5) >> 14))
99 #define B16(rgb) (uint8_t)((rgb) & kBlue5)
103 #define B16_32(rgb) (uint8_t)((((rgb) & kBlue5) << 3) | (((rgb) & kBlue5) >> 2))

Completed in 34 milliseconds