diff options
author | Sameer Venkatraman <sameerv@ti.com> | 2008-10-18 11:25:28 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-21 12:31:12 -0400 |
commit | 621a3739f3b8c7427a789d3b2fe86a80ff234225 (patch) | |
tree | 15704c45ad488aad4811d809c5d19fb5c43235da /include/media/v4l2-int-device.h | |
parent | 96014a957c7a39392315ce117466549d69eb63b2 (diff) |
V4L/DVB (9319): v4l2-int-if: Add cropcap, g_crop and s_crop commands.
Signed-off-by: Sameer Venkatraman <sameerv@ti.com>
Signed-off-by: Mohit Jalori <mjalori@ti.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/v4l2-int-device.h')
-rw-r--r-- | include/media/v4l2-int-device.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/media/v4l2-int-device.h b/include/media/v4l2-int-device.h index d9a0053654db..cee941c39aa2 100644 --- a/include/media/v4l2-int-device.h +++ b/include/media/v4l2-int-device.h | |||
@@ -170,6 +170,9 @@ enum v4l2_int_ioctl_num { | |||
170 | vidioc_int_queryctrl_num, | 170 | vidioc_int_queryctrl_num, |
171 | vidioc_int_g_ctrl_num, | 171 | vidioc_int_g_ctrl_num, |
172 | vidioc_int_s_ctrl_num, | 172 | vidioc_int_s_ctrl_num, |
173 | vidioc_int_cropcap_num, | ||
174 | vidioc_int_g_crop_num, | ||
175 | vidioc_int_s_crop_num, | ||
173 | vidioc_int_g_parm_num, | 176 | vidioc_int_g_parm_num, |
174 | vidioc_int_s_parm_num, | 177 | vidioc_int_s_parm_num, |
175 | 178 | ||
@@ -266,6 +269,9 @@ V4L2_INT_WRAPPER_1(try_fmt_cap, struct v4l2_format, *); | |||
266 | V4L2_INT_WRAPPER_1(queryctrl, struct v4l2_queryctrl, *); | 269 | V4L2_INT_WRAPPER_1(queryctrl, struct v4l2_queryctrl, *); |
267 | V4L2_INT_WRAPPER_1(g_ctrl, struct v4l2_control, *); | 270 | V4L2_INT_WRAPPER_1(g_ctrl, struct v4l2_control, *); |
268 | V4L2_INT_WRAPPER_1(s_ctrl, struct v4l2_control, *); | 271 | V4L2_INT_WRAPPER_1(s_ctrl, struct v4l2_control, *); |
272 | V4L2_INT_WRAPPER_1(cropcap, struct v4l2_cropcap, *); | ||
273 | V4L2_INT_WRAPPER_1(g_crop, struct v4l2_crop, *); | ||
274 | V4L2_INT_WRAPPER_1(s_crop, struct v4l2_crop, *); | ||
269 | V4L2_INT_WRAPPER_1(g_parm, struct v4l2_streamparm, *); | 275 | V4L2_INT_WRAPPER_1(g_parm, struct v4l2_streamparm, *); |
270 | V4L2_INT_WRAPPER_1(s_parm, struct v4l2_streamparm, *); | 276 | V4L2_INT_WRAPPER_1(s_parm, struct v4l2_streamparm, *); |
271 | 277 | ||