[media] exynos-gsc: Use user configured colorspace if provided
authorThibault Saunier <thibault.saunier@osg.samsung.com>
Wed, 1 Mar 2017 11:51:07 +0000 (08:51 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 13 Jun 2017 17:20:26 +0000 (14:20 -0300)
Use colorspace provided by the user as we are only doing scaling and
color encoding conversion, we won't be able to transform the colorspace
itself and the colorspace won't mater in that operation.

Also always use output colorspace on the capture side.

If the user does not provide a colorspace do not make it up, we might
later while processing need to figure out the colorspace, which
is possible depending on the frame size but do not ever guess and
leak that guess to the userspace.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Thibault Saunier <thibault.saunier@osg.samsung.com>
Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/platform/exynos-gsc/gsc-core.c
drivers/media/platform/exynos-gsc/gsc-core.h

index 59a6342018307170a3d5143e9ee061c08c688589..0241168c85af7d55f982f7dde591cac9898d174f 100644 (file)
@@ -454,6 +454,7 @@ int gsc_try_fmt_mplane(struct gsc_ctx *ctx, struct v4l2_format *f)
        } else {
                min_w = variant->pix_min->target_rot_dis_w;
                min_h = variant->pix_min->target_rot_dis_h;
+               pix_mp->colorspace = ctx->out_colorspace;
        }
 
        pr_debug("mod_x: %d, mod_y: %d, max_w: %d, max_h = %d",
@@ -472,10 +473,8 @@ int gsc_try_fmt_mplane(struct gsc_ctx *ctx, struct v4l2_format *f)
 
        pix_mp->num_planes = fmt->num_planes;
 
-       if (pix_mp->width >= 1280) /* HD */
-               pix_mp->colorspace = V4L2_COLORSPACE_REC709;
-       else /* SD */
-               pix_mp->colorspace = V4L2_COLORSPACE_SMPTE170M;
+       if (V4L2_TYPE_IS_OUTPUT(f->type))
+               ctx->out_colorspace = pix_mp->colorspace;
 
        for (i = 0; i < pix_mp->num_planes; ++i) {
                struct v4l2_plane_pix_format *plane_fmt = &pix_mp->plane_fmt[i];
@@ -519,8 +518,8 @@ int gsc_g_fmt_mplane(struct gsc_ctx *ctx, struct v4l2_format *f)
        pix_mp->height          = frame->f_height;
        pix_mp->field           = V4L2_FIELD_NONE;
        pix_mp->pixelformat     = frame->fmt->pixelformat;
-       pix_mp->colorspace      = V4L2_COLORSPACE_REC709;
        pix_mp->num_planes      = frame->fmt->num_planes;
+       pix_mp->colorspace = ctx->out_colorspace;
 
        for (i = 0; i < pix_mp->num_planes; ++i) {
                pix_mp->plane_fmt[i].bytesperline = (frame->f_width *
index 696217e9af66fcc62048a47980cbb25269e5f01b..715d9c9d8d30ad415abdf1818be66382414edfcc 100644 (file)
@@ -376,6 +376,7 @@ struct gsc_ctx {
        struct v4l2_ctrl_handler ctrl_handler;
        struct gsc_ctrls        gsc_ctrls;
        bool                    ctrls_rdy;
+       enum v4l2_colorspace out_colorspace;
 };
 
 void gsc_set_prefbuf(struct gsc_dev *gsc, struct gsc_frame *frm);