diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-12-12 20:27:28 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2006-12-12 20:27:28 +0100 |
commit | 1c4d36315614a51e0f369e13c21cb9ed30773bf2 (patch) | |
tree | 231a72cbe4fd7314c6597520a150072756b05d02 /linux | |
parent | 3b7d1ca1674a78e7c84cddab48b5649590d14d1d (diff) | |
download | mediapointer-dvb-s2-1c4d36315614a51e0f369e13c21cb9ed30773bf2.tar.gz mediapointer-dvb-s2-1c4d36315614a51e0f369e13c21cb9ed30773bf2.tar.bz2 |
Add PAL-60 support for cx2584x.
From: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/cx25840/cx25840-vbi.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx25840/cx25840-vbi.c b/linux/drivers/media/video/cx25840/cx25840-vbi.c index f78f8cd2d..876adbcba 100644 --- a/linux/drivers/media/video/cx25840/cx25840-vbi.c +++ b/linux/drivers/media/video/cx25840/cx25840-vbi.c @@ -129,7 +129,14 @@ void cx25840_vbi_setup(struct i2c_client *client) uv_lpf=1; src_decimation=0x21f; - if (std == V4L2_STD_PAL_M) { + if (std == V4L2_STD_PAL_60) { + vblank=26; + vblank656=26; + burst=0x5b; + luma_lpf=2; + comb=0x20; + sc=0x0a8263; + } else if (std == V4L2_STD_PAL_M) { vblank=20; vblank656=24; burst=0x61; |