This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: v4l2-info: add support for V4L2_BUF_CAP_SUPPORTS_REMOVE_BUFS Author: Hans Verkuil <hverkuil-ci...@xs4all.nl> Date: Tue Jul 16 14:00:38 2024 +0200 Support for this buffer capability was missing. Add it. Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl> utils/common/v4l2-info.cpp | 1 + 1 file changed, 1 insertion(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=8818d305973ed39f745c8faefd3d78610f39e154 diff --git a/utils/common/v4l2-info.cpp b/utils/common/v4l2-info.cpp index cfd242aacb12..aaf7b0b5297c 100644 --- a/utils/common/v4l2-info.cpp +++ b/utils/common/v4l2-info.cpp @@ -210,6 +210,7 @@ static constexpr flag_def bufcap_def[] = { { V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF, "m2m-hold-capture-buf" }, { V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS, "mmap-cache-hints" }, { V4L2_BUF_CAP_SUPPORTS_MAX_NUM_BUFFERS, "max-num-buffers" }, + { V4L2_BUF_CAP_SUPPORTS_REMOVE_BUFS, "remove-bufs" }, { 0, nullptr } };