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-compliance: skip V4L2_CID_MPEG_VIDEO_FWHT_PARAMS
Author:  Hans Verkuil <hverkuil-ci...@xs4all.nl>
Date:    Thu Jun 6 11:06:58 2019 +0200

This control isn't initialized correctly, so for now skip
it until this is fixed.

Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>

 utils/v4l2-compliance/v4l2-test-controls.cpp | 6 ++++++
 1 file changed, 6 insertions(+)

---

http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=5e61d1ebc711c724393a2285e0c374e9543846f7
diff --git a/utils/v4l2-compliance/v4l2-test-controls.cpp 
b/utils/v4l2-compliance/v4l2-test-controls.cpp
index ea50e7ae0200..1d017c512382 100644
--- a/utils/v4l2-compliance/v4l2-test-controls.cpp
+++ b/utils/v4l2-compliance/v4l2-test-controls.cpp
@@ -618,6 +618,9 @@ int testExtendedControls(struct node *node)
 
                if (is_vivid && V4L2_CTRL_ID2WHICH(qctrl.id) == 
V4L2_CTRL_CLASS_VIVID)
                        continue;
+               // Skip V4L2_CID_MPEG_VIDEO_FWHT_PARAMS for now
+               if (qctrl.id == (V4L2_CID_MPEG_BASE + 292))
+                       continue;
 
                info("checking extended control '%s' (0x%08x)\n", qctrl.name, 
qctrl.id);
                ctrl.id = qctrl.id;
@@ -730,6 +733,9 @@ int testExtendedControls(struct node *node)
 
                if (qctrl.flags & (V4L2_CTRL_FLAG_READ_ONLY | 
V4L2_CTRL_FLAG_WRITE_ONLY))
                        continue;
+               // Skip V4L2_CID_MPEG_VIDEO_FWHT_PARAMS for now
+               if (qctrl.id == (V4L2_CID_MPEG_BASE + 292))
+                       continue;
                ctrl.id = qctrl.id;
                ctrl.size = 0;
                if (qctrl.flags & V4L2_CTRL_FLAG_HAS_PAYLOAD) {

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to