Message ID | 220a3c1242ddcc80df6b6906ee0740f2dbfd7f84.1724923302.git.hverkuil-cisco@xs4all.nl (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | v4l-utils: add support for V4L2_CAP_EDID | expand |
diff --git a/utils/common/v4l2-info.cpp b/utils/common/v4l2-info.cpp index aaf7b0b5..7dd7e708 100644 --- a/utils/common/v4l2-info.cpp +++ b/utils/common/v4l2-info.cpp @@ -91,6 +91,8 @@ static std::string cap2s(unsigned cap) s += "\t\tI/O MC\n"; if (cap & V4L2_CAP_READWRITE) s += "\t\tRead/Write\n"; + if (cap & V4L2_CAP_EDID) + s += "\t\tEDID Only\n"; if (cap & V4L2_CAP_STREAMING) s += "\t\tStreaming\n"; if (cap & V4L2_CAP_EXT_PIX_FORMAT)
Understand V4L2_CAP_EDID and log it. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> --- utils/common/v4l2-info.cpp | 2 ++ 1 file changed, 2 insertions(+)