Commit 3eaeef57 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

V4L/DVB (6109): ivtv: use new videodev2.h pixel formats

Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 5d05704c
...@@ -1186,7 +1186,7 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void ...@@ -1186,7 +1186,7 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void
struct v4l2_framebuffer *fb = arg; struct v4l2_framebuffer *fb = arg;
int pixfmt; int pixfmt;
static u32 pixel_format[16] = { static u32 pixel_format[16] = {
V4L2_PIX_FMT_RGB332, /* Really RGB Indexed */ V4L2_PIX_FMT_PAL8, /* Uses a 256-entry RGB colormap */
V4L2_PIX_FMT_RGB565, V4L2_PIX_FMT_RGB565,
V4L2_PIX_FMT_RGB555, V4L2_PIX_FMT_RGB555,
V4L2_PIX_FMT_RGB444, V4L2_PIX_FMT_RGB444,
...@@ -1194,12 +1194,11 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void ...@@ -1194,12 +1194,11 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void
0, 0,
0, 0,
0, 0,
/* Really YUV variants */ V4L2_PIX_FMT_PAL8, /* Uses a 256-entry YUV colormap */
V4L2_PIX_FMT_RGB332, /* Really YUV Indexed */ V4L2_PIX_FMT_YUV565,
V4L2_PIX_FMT_RGB565, V4L2_PIX_FMT_YUV555,
V4L2_PIX_FMT_RGB555, V4L2_PIX_FMT_YUV444,
V4L2_PIX_FMT_RGB444, V4L2_PIX_FMT_YUV32,
V4L2_PIX_FMT_RGB32,
0, 0,
0, 0,
0, 0,
......
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