diff options
| author | Niklas Söderlund <[email protected]> | 2020-04-17 15:09:29 +0000 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2020-04-29 10:02:30 +0000 |
| commit | 9a42a5ff3daccc37ae4dbcfb6ce5c5d95419740b (patch) | |
| tree | beebc31fa5bbad98b908c63c4a5e51b7f053185c /drivers/media/test-drivers/vimc/vimc-sensor.c | |
| parent | media: si2157: ensure wait_status is initialized (diff) | |
| download | kernel-9a42a5ff3daccc37ae4dbcfb6ce5c5d95419740b.tar.gz kernel-9a42a5ff3daccc37ae4dbcfb6ce5c5d95419740b.zip | |
media: vimc: cap: Report a colorspace
The colorspace reported by a video nodes should not be
V4L2_COLORSPACE_DEFAULT. Instead a default colorspace should be picked
by the driver if V4L2_COLORSPACE_DEFAULT is given by userspace to
{G,S,TRY}_FMT.
The colorspace V4L2_COLORSPACE_SRGB is arbitrary chosen as the vimc
default format to report as it's used for most webcams.
Signed-off-by: Niklas Söderlund <[email protected]>
Acked-by: Helen Koike <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Diffstat (limited to 'drivers/media/test-drivers/vimc/vimc-sensor.c')
| -rw-r--r-- | drivers/media/test-drivers/vimc/vimc-sensor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/test-drivers/vimc/vimc-sensor.c b/drivers/media/test-drivers/vimc/vimc-sensor.c index 228120b3a6dd..56e8ec14be46 100644 --- a/drivers/media/test-drivers/vimc/vimc-sensor.c +++ b/drivers/media/test-drivers/vimc/vimc-sensor.c @@ -30,7 +30,7 @@ static const struct v4l2_mbus_framefmt fmt_default = { .height = 480, .code = MEDIA_BUS_FMT_RGB888_1X24, .field = V4L2_FIELD_NONE, - .colorspace = V4L2_COLORSPACE_DEFAULT, + .colorspace = V4L2_COLORSPACE_SRGB, }; static int vimc_sen_init_cfg(struct v4l2_subdev *sd, |
