Commit 500174a2 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

media: common: saa7146: fix broken V4L2_PIX_FMT_YUV422P support

The U and V components were swapped. Drop the FORMAT_BYTE_SWAP
to fix this.
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 0e236e0a
...@@ -51,7 +51,7 @@ static struct saa7146_format formats[] = { ...@@ -51,7 +51,7 @@ static struct saa7146_format formats[] = {
.pixelformat = V4L2_PIX_FMT_YUV422P, .pixelformat = V4L2_PIX_FMT_YUV422P,
.trans = YUV422_DECOMPOSED, .trans = YUV422_DECOMPOSED,
.depth = 16, .depth = 16,
.flags = FORMAT_BYTE_SWAP|FORMAT_IS_PLANAR, .flags = FORMAT_IS_PLANAR,
}, { }, {
.pixelformat = V4L2_PIX_FMT_YVU420, .pixelformat = V4L2_PIX_FMT_YVU420,
.trans = YUV420_DECOMPOSED, .trans = YUV420_DECOMPOSED,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment