diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2010-10-21 16:37:07 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2010-10-21 16:37:07 +0200 |
commit | 06013a66758e7c8e83dba4f81a92682c53a93d41 (patch) | |
tree | 0ca61c7c60d0ecb110907dd5fcb064eedf0be4f7 /subdev.c | |
parent | 33429a037a687d6a2786edfbf6d5093bfec0b987 (diff) |
Update to the latest media kernel API
The media kernel API has seen many changes during the review process,
update the media-ctl application accordingly.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'subdev.c')
-rw-r--r-- | subdev.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -37,8 +37,8 @@ static struct { const char *name; enum v4l2_mbus_pixelcode code; } mbus_formats[] = { - { "YUYV", V4L2_MBUS_FMT_YUYV16_1X16 }, - { "UYVY", V4L2_MBUS_FMT_UYVY16_1X16 }, + { "YUYV", V4L2_MBUS_FMT_YUYV8_1X16 }, + { "UYVY", V4L2_MBUS_FMT_UYVY8_1X16 }, { "SGRBG10", V4L2_MBUS_FMT_SGRBG10_1X10 }, { "SGRBG10_DPCM8", V4L2_MBUS_FMT_SGRBG10_DPCM8_1X8 }, }; @@ -88,9 +88,9 @@ static int v4l2_subdev_open(struct media_entity *entity) int v4l2_subdev_get_format(struct media_entity *entity, struct v4l2_mbus_framefmt *format, unsigned int pad, - enum v4l2_subdev_format which) + enum v4l2_subdev_format_whence which) { - struct v4l2_subdev_pad_format fmt; + struct v4l2_subdev_format fmt; int ret; ret = v4l2_subdev_open(entity); @@ -111,9 +111,9 @@ int v4l2_subdev_get_format(struct media_entity *entity, int v4l2_subdev_set_format(struct media_entity *entity, struct v4l2_mbus_framefmt *format, unsigned int pad, - enum v4l2_subdev_format which) + enum v4l2_subdev_format_whence which) { - struct v4l2_subdev_pad_format fmt; + struct v4l2_subdev_format fmt; int ret; ret = v4l2_subdev_open(entity); @@ -134,9 +134,9 @@ int v4l2_subdev_set_format(struct media_entity *entity, } int v4l2_subdev_get_crop(struct media_entity *entity, struct v4l2_rect *rect, - unsigned int pad, enum v4l2_subdev_format which) + unsigned int pad, enum v4l2_subdev_format_whence which) { - struct v4l2_subdev_pad_crop crop; + struct v4l2_subdev_crop crop; int ret; ret = v4l2_subdev_open(entity); @@ -156,9 +156,9 @@ int v4l2_subdev_get_crop(struct media_entity *entity, struct v4l2_rect *rect, } int v4l2_subdev_set_crop(struct media_entity *entity, struct v4l2_rect *rect, - unsigned int pad, enum v4l2_subdev_format which) + unsigned int pad, enum v4l2_subdev_format_whence which) { - struct v4l2_subdev_pad_crop crop; + struct v4l2_subdev_crop crop; int ret; ret = v4l2_subdev_open(entity); @@ -200,7 +200,7 @@ int v4l2_subdev_set_frame_interval(struct media_entity *entity, } void v4l2_subdev_print_format(struct media_entity *entity, - unsigned int pad, enum v4l2_subdev_format which) + unsigned int pad, enum v4l2_subdev_format_whence which) { struct v4l2_mbus_framefmt format; struct v4l2_rect rect; |