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: fix broken test for V4L2_SEL_TGT_COMPOSE_PADDED Author: Hans Verkuil <[email protected]> Date: Mon Feb 29 10:13:26 2016 +0100 The compliance test checked that top and left were 0 and failed if that wasn't the case. However, that's not how COMPOSE_PADDED is defined. Drop that test. Signed-off-by: Hans Verkuil <[email protected]> Reported-by: Niklas Söderlund <[email protected] utils/v4l2-compliance/v4l2-test-formats.cpp | 2 -- 1 file changed, 2 deletions(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=66b75324a892c9a72a5dbe62e76a81eab401ecea diff --git a/utils/v4l2-compliance/v4l2-test-formats.cpp b/utils/v4l2-compliance/v4l2-test-formats.cpp index 8dd919ec1c26..4db9bdbc0bf1 100644 --- a/utils/v4l2-compliance/v4l2-test-formats.cpp +++ b/utils/v4l2-compliance/v4l2-test-formats.cpp @@ -1332,8 +1332,6 @@ static int testBasicCompose(struct node *node, unsigned type) if (!ret) { fail_on_test(!rect_is_inside(&sel_padded.r, &sel_bounds.r)); fail_on_test(!sel_padded.r.width || !sel_padded.r.height); - if (type == V4L2_BUF_TYPE_VIDEO_CAPTURE) - fail_on_test(sel_padded.r.left || sel_padded.r.top); } return 0; } _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
