Searched refs:v4l2_fourcc (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/kernel/uapi/linux/ |
D | videodev2.h | 29 #define v4l2_fourcc(a,b,c,d) ((__u32) (a) | ((__u32) (b) << 8) | ((__u32) (c) << 16) | ((__u32) (d)… macro 30 #define v4l2_fourcc_be(a,b,c,d) (v4l2_fourcc(a, b, c, d) | (1 << 31)) 203 #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R', 'G', 'B', '1') 204 #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R', '4', '4', '4') 205 #define V4L2_PIX_FMT_ARGB444 v4l2_fourcc('A', 'R', '1', '2') 206 #define V4L2_PIX_FMT_XRGB444 v4l2_fourcc('X', 'R', '1', '2') 207 #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R', 'G', 'B', 'O') 208 #define V4L2_PIX_FMT_ARGB555 v4l2_fourcc('A', 'R', '1', '5') 209 #define V4L2_PIX_FMT_XRGB555 v4l2_fourcc('X', 'R', '1', '5') 210 #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R', 'G', 'B', 'P') [all …]
|