summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSakari Ailus <sakari.ailus@iki.fi>2012-05-23 01:31:00 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2012-07-18 01:50:39 +0200
commitce4ba0626e4b2a4c84bf30a1dbf8a399ee0ff252 (patch)
treee03c4a47a884ad90bc7e664fac5a448b89e9b88c
parent982bbcaec5f22a56dd4b6294905d26187f8f79dd (diff)
Replace V4L2 subdev selection targets with the V4L2 ones
V4L2 selection targets will replace V4L2 subdev selection targets in the near future. As the targets are guaranteed to be the same and the chance is anticipated very soon, replace the subdev targets with more future-proof V4L2 targets. Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r--src/main.c8
-rw-r--r--src/v4l2subdev.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/main.c b/src/main.c
index dad5a9d..13a458d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -64,28 +64,28 @@ static void v4l2_subdev_print_format(struct media_entity *entity,
format.width, format.height);
ret = v4l2_subdev_get_selection(entity, &rect, pad,
- V4L2_SUBDEV_SEL_TGT_CROP_BOUNDS,
+ V4L2_SEL_TGT_CROP_BOUNDS,
which);
if (ret == 0)
printf("\n\t\t crop.bounds:(%u,%u)/%ux%u", rect.left, rect.top,
rect.width, rect.height);
ret = v4l2_subdev_get_selection(entity, &rect, pad,
- V4L2_SUBDEV_SEL_TGT_CROP,
+ V4L2_SEL_TGT_CROP,
which);
if (ret == 0)
printf("\n\t\t crop:(%u,%u)/%ux%u", rect.left, rect.top,
rect.width, rect.height);
ret = v4l2_subdev_get_selection(entity, &rect, pad,
- V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS,
+ V4L2_SEL_TGT_COMPOSE_BOUNDS,
which);
if (ret == 0)
printf("\n\t\t compose.bounds:(%u,%u)/%ux%u",
rect.left, rect.top, rect.width, rect.height);
ret = v4l2_subdev_get_selection(entity, &rect, pad,
- V4L2_SUBDEV_SEL_TGT_COMPOSE,
+ V4L2_SEL_TGT_COMPOSE,
which);
if (ret == 0)
printf("\n\t\t compose:(%u,%u)/%ux%u",
diff --git a/src/v4l2subdev.c b/src/v4l2subdev.c
index fcf3ec5..d0c37f3 100644
--- a/src/v4l2subdev.c
+++ b/src/v4l2subdev.c
@@ -129,7 +129,7 @@ int v4l2_subdev_get_selection(struct media_entity *entity,
*rect = u.sel.r;
return 0;
}
- if (errno != ENOTTY || target != V4L2_SUBDEV_SEL_TGT_CROP)
+ if (errno != ENOTTY || target != V4L2_SEL_TGT_CROP)
return -errno;
memset(&u.crop, 0, sizeof(u.crop));
@@ -169,7 +169,7 @@ int v4l2_subdev_set_selection(struct media_entity *entity,
*rect = u.sel.r;
return 0;
}
- if (errno != ENOTTY || target != V4L2_SUBDEV_SEL_TGT_CROP)
+ if (errno != ENOTTY || target != V4L2_SEL_TGT_CROP)
return -errno;
memset(&u.crop, 0, sizeof(u.crop));
@@ -519,11 +519,11 @@ static int v4l2_subdev_parse_setup_format(struct media_device *media,
return ret;
}
- ret = set_selection(pad, V4L2_SUBDEV_SEL_TGT_CROP, &crop);
+ ret = set_selection(pad, V4L2_SEL_TGT_CROP, &crop);
if (ret < 0)
return ret;
- ret = set_selection(pad, V4L2_SUBDEV_SEL_TGT_COMPOSE, &compose);
+ ret = set_selection(pad, V4L2_SEL_TGT_COMPOSE, &compose);
if (ret < 0)
return ret;