diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-06 16:59:35 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:43:30 -0400 |
commit | 2da9479aaa331bdfaadab0d14f75fd76bfa5e56a (patch) | |
tree | 47f03e9f792da3e1b208f18cb98e2ec040b9e8ac /include/media | |
parent | e34184edfbe3ea818408f0ac1cb1fe538301e67d (diff) |
V4L/DVB (11112): v4l2-subdev: add support for TRY_FMT, ENUM_FMT and G/S_PARM.
These ops are used by the ov7670 driver, so these need to be added.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/v4l2-subdev.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index 1b97a2c33a73..d7a72d2d1f00 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h | |||
@@ -118,8 +118,12 @@ struct v4l2_subdev_video_ops { | |||
118 | int (*querystd)(struct v4l2_subdev *sd, v4l2_std_id *std); | 118 | int (*querystd)(struct v4l2_subdev *sd, v4l2_std_id *std); |
119 | int (*g_input_status)(struct v4l2_subdev *sd, u32 *status); | 119 | int (*g_input_status)(struct v4l2_subdev *sd, u32 *status); |
120 | int (*s_stream)(struct v4l2_subdev *sd, int enable); | 120 | int (*s_stream)(struct v4l2_subdev *sd, int enable); |
121 | int (*s_fmt)(struct v4l2_subdev *sd, struct v4l2_format *fmt); | 121 | int (*enum_fmt)(struct v4l2_subdev *sd, struct v4l2_fmtdesc *fmtdesc); |
122 | int (*g_fmt)(struct v4l2_subdev *sd, struct v4l2_format *fmt); | 122 | int (*g_fmt)(struct v4l2_subdev *sd, struct v4l2_format *fmt); |
123 | int (*try_fmt)(struct v4l2_subdev *sd, struct v4l2_format *fmt); | ||
124 | int (*s_fmt)(struct v4l2_subdev *sd, struct v4l2_format *fmt); | ||
125 | int (*g_parm)(struct v4l2_subdev *sd, struct v4l2_streamparm *param); | ||
126 | int (*s_parm)(struct v4l2_subdev *sd, struct v4l2_streamparm *param); | ||
123 | }; | 127 | }; |
124 | 128 | ||
125 | struct v4l2_subdev_ops { | 129 | struct v4l2_subdev_ops { |