summaryrefslogtreecommitdiffstats
path: root/drivers/media/common/saa7146_fops.c
diff options
context:
space:
mode:
authorHans Verkuil2012-05-01 16:17:35 +0200
committerMauro Carvalho Chehab2012-05-14 19:58:16 +0200
commitfd74d6eb4c2c1caa18208df32d9d38b5fe9738fc (patch)
treea76ebd2dfd1e4582e3cd2b2102bfa12070ade349 /drivers/media/common/saa7146_fops.c
parent[media] saa7146: move overlay information from saa7146_fh into saa7146_vv (diff)
downloadkernel-qcow2-linux-fd74d6eb4c2c1caa18208df32d9d38b5fe9738fc.tar.gz
kernel-qcow2-linux-fd74d6eb4c2c1caa18208df32d9d38b5fe9738fc.tar.xz
kernel-qcow2-linux-fd74d6eb4c2c1caa18208df32d9d38b5fe9738fc.zip
[media] saa7146: move video_fmt from saa7146_fh to saa7146_vv
This is a global structure and does not belong to saa7146_fh. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common/saa7146_fops.c')
-rw-r--r--drivers/media/common/saa7146_fops.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/media/common/saa7146_fops.c b/drivers/media/common/saa7146_fops.c
index 68047c93fd9d..b8d0d7df5d67 100644
--- a/drivers/media/common/saa7146_fops.c
+++ b/drivers/media/common/saa7146_fops.c
@@ -504,6 +504,16 @@ int saa7146_vv_init(struct saa7146_dev* dev, struct saa7146_ext_vv *ext_vv)
fmt->bytesperline = 2 * fmt->width;
fmt->sizeimage = fmt->bytesperline * fmt->height;
fmt->colorspace = V4L2_COLORSPACE_SRGB;
+
+ fmt = &vv->video_fmt;
+ fmt->width = 384;
+ fmt->height = 288;
+ fmt->pixelformat = V4L2_PIX_FMT_BGR24;
+ fmt->field = V4L2_FIELD_ANY;
+ fmt->colorspace = V4L2_COLORSPACE_SMPTE170M;
+ fmt->bytesperline = 3 * fmt->width;
+ fmt->sizeimage = fmt->bytesperline * fmt->height;
+
vv->ov_fb.capability = V4L2_FBUF_CAP_LIST_CLIPPING;
vv->ov_fb.flags = V4L2_FBUF_FLAG_PRIMARY;
dev->vv_data = vv;