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) | (1U << 31)) 209 #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R', 'G', 'B', '1') 210 #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R', '4', '4', '4') 211 #define V4L2_PIX_FMT_ARGB444 v4l2_fourcc('A', 'R', '1', '2') 212 #define V4L2_PIX_FMT_XRGB444 v4l2_fourcc('X', 'R', '1', '2') 213 #define V4L2_PIX_FMT_RGBA444 v4l2_fourcc('R', 'A', '1', '2') 214 #define V4L2_PIX_FMT_RGBX444 v4l2_fourcc('R', 'X', '1', '2') 215 #define V4L2_PIX_FMT_ABGR444 v4l2_fourcc('A', 'B', '1', '2') 216 #define V4L2_PIX_FMT_XBGR444 v4l2_fourcc('X', 'B', '1', '2') [all …]
|