Skip to content

Commit

Permalink
V4L/DVB (13664): tw9910: use V4L2_FIELD_INTERLACED_BT
Browse files Browse the repository at this point in the history
tw9910 output is interlaced and its correct order is Bottom - Top

Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Kuninori Morimoto authored and Mauro Carvalho Chehab committed Dec 16, 2009
1 parent 1edcc10 commit 34cae30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/media/video/tw9910.c
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ static int tw9910_g_fmt(struct v4l2_subdev *sd,
mf->height = priv->scale->height;
mf->code = V4L2_MBUS_FMT_YVYU8_2X8_BE;
mf->colorspace = V4L2_COLORSPACE_JPEG;
mf->field = V4L2_FIELD_INTERLACED;
mf->field = V4L2_FIELD_INTERLACED_BT;

return 0;
}
Expand All @@ -852,7 +852,7 @@ static int tw9910_s_fmt(struct v4l2_subdev *sd,
int ret;

WARN_ON(mf->field != V4L2_FIELD_ANY &&
mf->field != V4L2_FIELD_INTERLACED);
mf->field != V4L2_FIELD_INTERLACED_BT);

/*
* check color format
Expand All @@ -878,8 +878,8 @@ static int tw9910_try_fmt(struct v4l2_subdev *sd,
const struct tw9910_scale_ctrl *scale;

if (V4L2_FIELD_ANY == mf->field) {
mf->field = V4L2_FIELD_INTERLACED;
} else if (V4L2_FIELD_INTERLACED != mf->field) {
mf->field = V4L2_FIELD_INTERLACED_BT;
} else if (V4L2_FIELD_INTERLACED_BT != mf->field) {
dev_err(&client->dev, "Field type %d invalid.\n", mf->field);
return -EINVAL;
}
Expand Down

0 comments on commit 34cae30

Please sign in to comment.