提交 3f537dd2 编写于 作者: D Dave Stevenson 提交者: Zheng Zengkai

media: videodev2: Add helper defines for printing FOURCCs

raspberrypi inclusion
category: feature
bugzilla: 50432

--------------------------------

New helper defines that allow printing of a FOURCC using
printf(V4L2_FOURCC_CONV, V4L2_FOURCC_CONV_ARGS(fourcc));
Signed-off-by: NDave Stevenson <dave.stevenson@raspberrypi.org>
Signed-off-by: NFang Yafen <yafen@iscas.ac.cn>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 abb17f82
......@@ -82,6 +82,11 @@
((__u32)(a) | ((__u32)(b) << 8) | ((__u32)(c) << 16) | ((__u32)(d) << 24))
#define v4l2_fourcc_be(a, b, c, d) (v4l2_fourcc(a, b, c, d) | (1U << 31))
#define V4L2_FOURCC_CONV "%c%c%c%c%s"
#define V4L2_FOURCC_CONV_ARGS(fourcc) \
(fourcc) & 0x7f, ((fourcc) >> 8) & 0x7f, ((fourcc) >> 16) & 0x7f, \
((fourcc) >> 24) & 0x7f, (fourcc) & BIT(31) ? "-BE" : ""
/*
* E N U M S
*/
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册