Commit c431cbbb authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

Revert "[media] v4l2-ioctl: simplify code"

There are some issues rised on this patch during patch review.
I ended by merging this one by mistake. So, let's revert it.

This reverts commit 54ace1cf.

Cc: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 6ad9ba9c
...@@ -2160,40 +2160,33 @@ static int v4l_cropcap(const struct v4l2_ioctl_ops *ops, ...@@ -2160,40 +2160,33 @@ static int v4l_cropcap(const struct v4l2_ioctl_ops *ops,
struct file *file, void *fh, void *arg) struct file *file, void *fh, void *arg)
{ {
struct v4l2_cropcap *p = arg; struct v4l2_cropcap *p = arg;
struct v4l2_selection s = { .type = p->type };
int ret;
if (ops->vidioc_g_selection == NULL) { if (ops->vidioc_g_selection) {
/* struct v4l2_selection s = { .type = p->type };
* The determine_valid_ioctls() call already should ensure int ret;
* that ops->vidioc_cropcap != NULL, but just in case...
*/
if (ops->vidioc_cropcap)
return ops->vidioc_cropcap(file, fh, p);
return -ENOTTY;
}
/* obtaining bounds */ /* obtaining bounds */
if (V4L2_TYPE_IS_OUTPUT(p->type)) if (V4L2_TYPE_IS_OUTPUT(p->type))
s.target = V4L2_SEL_TGT_COMPOSE_BOUNDS; s.target = V4L2_SEL_TGT_COMPOSE_BOUNDS;
else else
s.target = V4L2_SEL_TGT_CROP_BOUNDS; s.target = V4L2_SEL_TGT_CROP_BOUNDS;
ret = ops->vidioc_g_selection(file, fh, &s); ret = ops->vidioc_g_selection(file, fh, &s);
if (ret) if (ret)
return ret; return ret;
p->bounds = s.r; p->bounds = s.r;
/* obtaining defrect */ /* obtaining defrect */
if (V4L2_TYPE_IS_OUTPUT(p->type)) if (V4L2_TYPE_IS_OUTPUT(p->type))
s.target = V4L2_SEL_TGT_COMPOSE_DEFAULT; s.target = V4L2_SEL_TGT_COMPOSE_DEFAULT;
else else
s.target = V4L2_SEL_TGT_CROP_DEFAULT; s.target = V4L2_SEL_TGT_CROP_DEFAULT;
ret = ops->vidioc_g_selection(file, fh, &s); ret = ops->vidioc_g_selection(file, fh, &s);
if (ret) if (ret)
return ret; return ret;
p->defrect = s.r; p->defrect = s.r;
}
/* setting trivial pixelaspect */ /* setting trivial pixelaspect */
p->pixelaspect.numerator = 1; p->pixelaspect.numerator = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment