Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8365fc2 authored by Sylwester Nawrocki's avatar Sylwester Nawrocki Committed by Mauro Carvalho Chehab
Browse files

[media] s5p-fimc: Use correct fourcc code for 32-bit RGB format



Replace V4L2_PIX_FMT_RGB24 code with V4L2_PIX_FMT_RGB32
since the hardware uses 24-bits for actual pixel data but pixels
are 4-byte aligned in memory.

Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 69e05e83
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -50,8 +50,8 @@ static struct fimc_fmt fimc_formats[] = {
		.planes_cnt = 1,
		.flags = FMT_FLAGS_M2M,
	}, {
		.name = "XRGB-8-8-8-8, 24 bpp",
		.fourcc	= V4L2_PIX_FMT_RGB24,
		.name = "XRGB-8-8-8-8, 32 bpp",
		.fourcc	= V4L2_PIX_FMT_RGB32,
		.depth = 32,
		.color	= S5P_FIMC_RGB888,
		.buff_cnt = 1,