From patchwork Mon Mar 28 15:19:55 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomasz Stanislawski X-Patchwork-Id: 668721 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p2SFKS5V030731 for ; Mon, 28 Mar 2011 15:20:29 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753674Ab1C1PU1 (ORCPT ); Mon, 28 Mar 2011 11:20:27 -0400 Received: from mailout1.w1.samsung.com ([210.118.77.11]:62214 "EHLO mailout1.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751556Ab1C1PU1 (ORCPT ); Mon, 28 Mar 2011 11:20:27 -0400 Received: from spt2.w1.samsung.com (mailout1.w1.samsung.com [210.118.77.11]) by mailout1.w1.samsung.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0LIR008NIX9ZG0@mailout1.w1.samsung.com> for linux-media@vger.kernel.org; Mon, 28 Mar 2011 16:20:23 +0100 (BST) Received: from linux.samsung.com ([106.116.38.10]) by spt2.w1.samsung.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTPA id <0LIR009LYX9Y94@spt2.w1.samsung.com> for linux-media@vger.kernel.org; Mon, 28 Mar 2011 16:20:23 +0100 (BST) Received: from localhost.localdomain (unknown [106.116.38.10]) by linux.samsung.com (Postfix) with ESMTP id C79CF27004C; Mon, 28 Mar 2011 17:21:57 +0200 (CEST) Date: Mon, 28 Mar 2011 17:19:55 +0200 From: Tomasz Stanislawski Subject: [PATCH 1/2] v4l: add support for extended crop/compose API In-reply-to: <1301325596-18166-1-git-send-email-t.stanislaws@samsung.com> To: linux-media@vger.kernel.org Cc: m.szyprowski@samsung.com, t.stanislaws@samsung.com, kyungmin.park@samsung.com Message-id: <1301325596-18166-2-git-send-email-t.stanislaws@samsung.com> MIME-version: 1.0 X-Mailer: git-send-email 1.7.2.3 Content-type: TEXT/PLAIN Content-transfer-encoding: 7BIT References: <1301325596-18166-1-git-send-email-t.stanislaws@samsung.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 28 Mar 2011 15:20:52 +0000 (UTC) diff --git a/drivers/media/video/v4l2-compat-ioctl32.c b/drivers/media/video/v4l2-compat-ioctl32.c index 7c26947..81481bc 100644 --- a/drivers/media/video/v4l2-compat-ioctl32.c +++ b/drivers/media/video/v4l2-compat-ioctl32.c @@ -891,6 +891,10 @@ long v4l2_compat_ioctl32(struct file *file, unsigned int cmd, unsigned long arg) case VIDIOC_CROPCAP: case VIDIOC_G_CROP: case VIDIOC_S_CROP: + case VIDIOC_G_EXTCROP: + case VIDIOC_S_EXTCROP: + case VIDIOC_G_COMPOSE: + case VIDIOC_S_COMPOSE: case VIDIOC_G_JPEGCOMP: case VIDIOC_S_JPEGCOMP: case VIDIOC_QUERYSTD: diff --git a/drivers/media/video/v4l2-ioctl.c b/drivers/media/video/v4l2-ioctl.c index 7a72074..3f69218 100644 --- a/drivers/media/video/v4l2-ioctl.c +++ b/drivers/media/video/v4l2-ioctl.c @@ -223,6 +223,10 @@ static const char *v4l2_ioctls[] = { [_IOC_NR(VIDIOC_CROPCAP)] = "VIDIOC_CROPCAP", [_IOC_NR(VIDIOC_G_CROP)] = "VIDIOC_G_CROP", [_IOC_NR(VIDIOC_S_CROP)] = "VIDIOC_S_CROP", + [_IOC_NR(VIDIOC_G_EXTCROP)] = "VIDIOC_G_EXTCROP", + [_IOC_NR(VIDIOC_S_EXTCROP)] = "VIDIOC_S_EXTCROP", + [_IOC_NR(VIDIOC_G_COMPOSE)] = "VIDIOC_G_COMPOSE", + [_IOC_NR(VIDIOC_S_COMPOSE)] = "VIDIOC_S_COMPOSE", [_IOC_NR(VIDIOC_G_JPEGCOMP)] = "VIDIOC_G_JPEGCOMP", [_IOC_NR(VIDIOC_S_JPEGCOMP)] = "VIDIOC_S_JPEGCOMP", [_IOC_NR(VIDIOC_QUERYSTD)] = "VIDIOC_QUERYSTD", @@ -1741,6 +1745,58 @@ static long __video_do_ioctl(struct file *file, ret = ops->vidioc_s_crop(file, fh, p); break; } + case VIDIOC_G_EXTCROP: + { + struct v4l2_selection *p = arg; + + if (!ops->vidioc_g_extcrop) + break; + + dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); + + ret = ops->vidioc_g_extcrop(file, fh, p); + if (!ret) + dbgrect(vfd, "", &p->r); + break; + } + case VIDIOC_S_EXTCROP: + { + struct v4l2_selection *p = arg; + + if (!ops->vidioc_s_extcrop) + break; + dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); + dbgrect(vfd, "", &p->r); + + ret = ops->vidioc_s_extcrop(file, fh, p); + break; + } + case VIDIOC_G_COMPOSE: + { + struct v4l2_selection *p = arg; + + if (!ops->vidioc_g_compose) + break; + + dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); + + ret = ops->vidioc_g_compose(file, fh, p); + if (!ret) + dbgrect(vfd, "", &p->r); + break; + } + case VIDIOC_S_COMPOSE: + { + struct v4l2_selection *p = arg; + + if (!ops->vidioc_s_compose) + break; + dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); + dbgrect(vfd, "", &p->r); + + ret = ops->vidioc_s_compose(file, fh, p); + break; + } case VIDIOC_CROPCAP: { struct v4l2_cropcap *p = arg; diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index a94c4d5..26568c6 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h @@ -718,6 +718,30 @@ struct v4l2_crop { struct v4l2_rect c; }; +struct v4l2_selection { + enum v4l2_buf_type type; + struct v4l2_rect r; + __u32 flags; + __u32 reserved[10]; +}; + +/* Hints for adjustments of selection rectangle */ +#define V4L2_SEL_WIDTH_GE 0x00000001 +#define V4L2_SEL_WIDTH_LE 0x00000002 +#define V4L2_SEL_HEIGHT_GE 0x00000004 +#define V4L2_SEL_HEIGHT_LE 0x00000008 +#define V4L2_SEL_LEFT_GE 0x00000010 +#define V4L2_SEL_LEFT_LE 0x00000020 +#define V4L2_SEL_TOP_GE 0x00000040 +#define V4L2_SEL_TOP_LE 0x00000080 + +#define V4L2_SEL_WIDTH_FIXED 0x00000003 +#define V4L2_SEL_HEIGHT_FIXED 0x0000000c +#define V4L2_SEL_LEFT_FIXED 0x00000030 +#define V4L2_SEL_TOP_FIXED 0x000000c0 + +#define V4L2_SEL_FIXED 0x000000ff + /* * A N A L O G V I D E O S T A N D A R D */ @@ -1932,6 +1956,12 @@ struct v4l2_dbg_chip_ident { #define VIDIOC_SUBSCRIBE_EVENT _IOW('V', 90, struct v4l2_event_subscription) #define VIDIOC_UNSUBSCRIBE_EVENT _IOW('V', 91, struct v4l2_event_subscription) +/* New cropping/compose API */ +#define VIDIOC_G_EXTCROP _IOWR('V', 92, struct v4l2_selection) +#define VIDIOC_S_EXTCROP _IOWR('V', 93, struct v4l2_selection) +#define VIDIOC_G_COMPOSE _IOWR('V', 94, struct v4l2_selection) +#define VIDIOC_S_COMPOSE _IOWR('V', 95, struct v4l2_selection) + /* Reminder: when adding new ioctls please add support for them to drivers/media/video/v4l2-compat-ioctl32.c as well! */ diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h index 1572c7f..3174b88 100644 --- a/include/media/v4l2-ioctl.h +++ b/include/media/v4l2-ioctl.h @@ -194,6 +194,14 @@ struct v4l2_ioctl_ops { struct v4l2_crop *a); int (*vidioc_s_crop) (struct file *file, void *fh, struct v4l2_crop *a); + int (*vidioc_g_extcrop) (struct file *file, void *fh, + struct v4l2_selection *a); + int (*vidioc_s_extcrop) (struct file *file, void *fh, + struct v4l2_selection *a); + int (*vidioc_g_compose) (struct file *file, void *fh, + struct v4l2_selection *a); + int (*vidioc_s_compose) (struct file *file, void *fh, + struct v4l2_selection *a); /* Compression ioctls */ int (*vidioc_g_jpegcomp) (struct file *file, void *fh, struct v4l2_jpegcompression *a);