OSDN Git Service

media: staging: rkisp1: rsz: get the capture format info from the capture struct
authorDafna Hirschfeld <dafna.hirschfeld@collabora.com>
Sun, 12 Apr 2020 12:05:01 +0000 (14:05 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 5 May 2020 15:05:37 +0000 (17:05 +0200)
Currently the format info of the capture is retrieved by calling
the function v4l2_format_info. This is not needed since it is
already saved in the capture object.

Signed-off-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/rkisp1/rkisp1-resizer.c

index 7b6b7dd..84f23a9 100644 (file)
@@ -387,11 +387,9 @@ static void rkisp1_rsz_config(struct rkisp1_resizer *rsz,
        if (rsz->pixel_enc == V4L2_PIXEL_ENC_YUV) {
                struct rkisp1_capture *cap =
                        &rsz->rkisp1->capture_devs[rsz->id];
-               const struct v4l2_format_info *pixfmt_info =
-                       v4l2_format_info(cap->pix.fmt.pixelformat);
 
-               hdiv = pixfmt_info->hdiv;
-               vdiv = pixfmt_info->vdiv;
+               hdiv = cap->pix.info->hdiv;
+               vdiv = cap->pix.info->vdiv;
        }
        src_c.width = src_y.width / hdiv;
        src_c.height = src_y.height / vdiv;