The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH v2] media: uapi: v4l: Change V4L2_TYPE_IS_CAPTURE condition
@ 2024-05-28  2:04 Nas Chung
  2024-05-28 13:46 ` Michael Tretter
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Nas Chung @ 2024-05-28  2:04 UTC (permalink / raw)
  To: mchehab, linux-media, sebastian.fricke, m.tretter; +Cc: linux-kernel, Nas Chung

Explicitly compare a buffer type only with valid buffer types,
to avoid matching the buffer type outside of valid buffer
type set.

Signed-off-by: Nas Chung <nas.chung@chipsnmedia.com>
---
 include/uapi/linux/videodev2.h | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
index fe6b67e83751..fa2b7086e480 100644
--- a/include/uapi/linux/videodev2.h
+++ b/include/uapi/linux/videodev2.h
@@ -157,6 +157,10 @@ enum v4l2_buf_type {
 	V4L2_BUF_TYPE_PRIVATE              = 0x80,
 };
 
+#define V4L2_TYPE_IS_VALID(type)		\
+	((type) >= V4L2_BUF_TYPE_VIDEO_CAPTURE	\
+	 && (type) <= V4L2_BUF_TYPE_META_OUTPUT)
+
 #define V4L2_TYPE_IS_MULTIPLANAR(type)			\
 	((type) == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE	\
 	 || (type) == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
@@ -171,7 +175,8 @@ enum v4l2_buf_type {
 	 || (type) == V4L2_BUF_TYPE_SDR_OUTPUT			\
 	 || (type) == V4L2_BUF_TYPE_META_OUTPUT)
 
-#define V4L2_TYPE_IS_CAPTURE(type) (!V4L2_TYPE_IS_OUTPUT(type))
+#define V4L2_TYPE_IS_CAPTURE(type)	\
+	(V4L2_TYPE_IS_VALID(type) && !V4L2_TYPE_IS_OUTPUT(type))
 
 enum v4l2_tuner_type {
 	V4L2_TUNER_RADIO	     = 1,
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-05-31  8:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-28  2:04 [PATCH v2] media: uapi: v4l: Change V4L2_TYPE_IS_CAPTURE condition Nas Chung
2024-05-28 13:46 ` Michael Tretter
2024-05-30 10:31 ` Hans Verkuil
2024-05-31  7:03   ` Nas Chung
2024-05-31  7:28     ` Hans Verkuil
2024-05-31  7:25 ` Sebastian Fricke
2024-05-31  8:03   ` Nas Chung

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox