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

Commit a30ee3c7 authored by Jean Delvare's avatar Jean Delvare Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (8961): zr36067: Fix RGBR pixel format



The zr36067 driver is improperly declaring pixel format RGBP twice,
once as "16-bit RGB LE" and once as "16-bit RGB BE". The latter is
actually RGBR. Fix the code to properly map both pixel formats.

Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Acked-by: default avatarTrent Piepho <xyzzy@speakeasy.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ec16d020
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ const struct zoran_format zoran_formats[] = {
	}, {
		.name = "16-bit RGB BE",
		ZFMT(-1,
		     V4L2_PIX_FMT_RGB565, V4L2_COLORSPACE_SRGB),
		     V4L2_PIX_FMT_RGB565X, V4L2_COLORSPACE_SRGB),
		.depth = 16,
		.flags = ZORAN_FORMAT_CAPTURE |
			 ZORAN_FORMAT_OVERLAY,