media: rcar-vin: Fix image alignment for setting pre clipping
authorKoji Matsuoka <koji.matsuoka.xm@renesas.com>
Fri, 13 Apr 2018 02:18:13 +0000 (22:18 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 20 Apr 2018 12:39:15 +0000 (08:39 -0400)
In Video Pixel/Line Pre-Clip Register, the setting value can be
set in 1 line unit, but it can only be specified as a multiple of
4 by v4l_bound_align_image function().
So correct that it can be specified in 1 line unit with this patch.

Signed-off-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Signed-off-by: Hans Verkuil <hansverk@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/platform/rcar-vin/rcar-v4l2.c

index b479b88..a3c2dac 100644 (file)
@@ -405,8 +405,8 @@ static int rvin_s_selection(struct file *file, void *fh,
                max_rect.height = vin->source.height;
                v4l2_rect_map_inside(&r, &max_rect);
 
-               v4l_bound_align_image(&r.width, 2, vin->source.width, 1,
-                                     &r.height, 4, vin->source.height, 2, 0);
+               v4l_bound_align_image(&r.width, 6, vin->source.width, 0,
+                                     &r.height, 2, vin->source.height, 0, 0);
 
                r.top  = clamp_t(s32, r.top, 0, vin->source.height - r.height);
                r.left = clamp_t(s32, r.left, 0, vin->source.width - r.width);