[media] s5p-jpeg: Fix wrong NV12 format parameters
NV12 format entries in the sjpeg_formats array had wrong colplanes, depth and v_align values. Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
7e8f15c5aa
commit
a62cffefc9
@@ -175,7 +175,7 @@ static struct s5p_jpeg_fmt sjpeg_formats[] = {
|
|||||||
{
|
{
|
||||||
.name = "YUV 4:2:0 planar, Y/CbCr",
|
.name = "YUV 4:2:0 planar, Y/CbCr",
|
||||||
.fourcc = V4L2_PIX_FMT_NV12,
|
.fourcc = V4L2_PIX_FMT_NV12,
|
||||||
.depth = 16,
|
.depth = 12,
|
||||||
.colplanes = 2,
|
.colplanes = 2,
|
||||||
.h_align = 1,
|
.h_align = 1,
|
||||||
.v_align = 1,
|
.v_align = 1,
|
||||||
@@ -188,10 +188,10 @@ static struct s5p_jpeg_fmt sjpeg_formats[] = {
|
|||||||
{
|
{
|
||||||
.name = "YUV 4:2:0 planar, Y/CbCr",
|
.name = "YUV 4:2:0 planar, Y/CbCr",
|
||||||
.fourcc = V4L2_PIX_FMT_NV12,
|
.fourcc = V4L2_PIX_FMT_NV12,
|
||||||
.depth = 16,
|
.depth = 12,
|
||||||
.colplanes = 4,
|
.colplanes = 2,
|
||||||
.h_align = 4,
|
.h_align = 4,
|
||||||
.v_align = 1,
|
.v_align = 4,
|
||||||
.flags = SJPEG_FMT_FLAG_ENC_OUTPUT |
|
.flags = SJPEG_FMT_FLAG_ENC_OUTPUT |
|
||||||
SJPEG_FMT_FLAG_DEC_CAPTURE |
|
SJPEG_FMT_FLAG_DEC_CAPTURE |
|
||||||
SJPEG_FMT_FLAG_S5P |
|
SJPEG_FMT_FLAG_S5P |
|
||||||
|
Reference in New Issue
Block a user