The hardware can capture both odd and even fields in the separate buffers, so it's possible to support this field mode. However, if the subdevice presents data in this mode, we prefer to use the hardware deinterlacing... Signed-off-by: Sergei Shtylyov <sergei.shtylyov@xxxxxxxxxxxxxxxxxx> --- This patch is against the 'media_tree.git' repo's 'master' branch. This patch needs to be merged before the following ADV7180 driver patch is merged: http://www.mail-archive.com/linux-media@xxxxxxxxxxxxxxx/msg100410.html drivers/media/platform/soc_camera/rcar_vin.c | 2 ++ 1 file changed, 2 insertions(+) Index: media_tree/drivers/media/platform/soc_camera/rcar_vin.c =================================================================== --- media_tree.orig/drivers/media/platform/soc_camera/rcar_vin.c +++ media_tree/drivers/media/platform/soc_camera/rcar_vin.c @@ -585,6 +585,7 @@ static int rcar_vin_setup(struct rcar_vi vnmc = VNMC_IM_FULL | VNMC_FOC; break; case V4L2_FIELD_NONE: + case V4L2_FIELD_ALTERNATE: if (is_continuous_transfer(priv)) { vnmc = VNMC_IM_ODD_EVEN; progressive = true; @@ -1595,6 +1596,7 @@ static int rcar_vin_set_fmt(struct soc_c case V4L2_FIELD_INTERLACED_BT: field = pix->field; break; + case V4L2_FIELD_ALTERNATE: case V4L2_FIELD_INTERLACED: /* Query for standard if not explicitly mentioned _TB/_BT */ ret = v4l2_subdev_call(sd, video, querystd, &std); -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html