diff options
author | Laurent Pinchart <[email protected]> | 2023-09-24 18:32:57 +0300 |
---|---|---|
committer | Hans Verkuil <[email protected]> | 2023-10-07 10:55:46 +0200 |
commit | 2ae504a561dbb31e5fb0a21f242f07e8c91cce61 (patch) | |
tree | 56f06bc5f2e4642a4d7ed9c8398520a6bf8ad770 | |
parent | cff09e76bf7940e2a82d003d80ca89824005008d (diff) |
media: i2c: imx219: Initialize ycbcr_enc
While the ycbcr_enc field doesn't apply to raw formats, leaving it
uninitialized makes the driver behave in a less deterministic way. Fix
it by picking the default value for the colorspace.
Signed-off-by: Laurent Pinchart <[email protected]>
Reviewed-by: Dave Stevenson <[email protected]>
Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
-rw-r--r-- | drivers/media/i2c/imx219.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/i2c/imx219.c b/drivers/media/i2c/imx219.c index 140924445a61..2e1fbeef11a8 100644 --- a/drivers/media/i2c/imx219.c +++ b/drivers/media/i2c/imx219.c @@ -495,6 +495,7 @@ static void imx219_update_pad_format(struct imx219 *imx219, fmt->height = mode->height; fmt->field = V4L2_FIELD_NONE; fmt->colorspace = V4L2_COLORSPACE_RAW; + fmt->ycbcr_enc = V4L2_YCBCR_ENC_601; fmt->quantization = V4L2_QUANTIZATION_FULL_RANGE; fmt->xfer_func = V4L2_XFER_FUNC_NONE; } |