[PATCHv2,2/3] utils/common: add V4L2_CAP_EDID support
Commit Message
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(+)
@@ -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)