From f10645815ff6d66711a9f180f7573905812556bc Mon Sep 17 00:00:00 2001 From: Gerd Knorr Date: Thu, 22 Jul 2004 13:34:58 +0000 Subject: - filter fixes for secam. --- linux/drivers/media/video/cx88/cx88-video.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'linux/drivers/media/video/cx88/cx88-video.c') diff --git a/linux/drivers/media/video/cx88/cx88-video.c b/linux/drivers/media/video/cx88/cx88-video.c index 3cfa3bfdc..49e7256ca 100644 --- a/linux/drivers/media/video/cx88/cx88-video.c +++ b/linux/drivers/media/video/cx88/cx88-video.c @@ -684,7 +684,9 @@ static int set_scale(struct cx8800_dev *dev, unsigned int width, unsigned int he value |= (1 << 0); // 3-tap interpolation if (width < 193) value |= (1 << 1); // 5-tap interpolation - + if (dev->tvnorm.id & V4L2_STD_SECAM) + value |= (1 << 16); + cx_write(MO_FILTER_EVEN, value); cx_write(MO_FILTER_ODD, value); dprintk(1,"set_scale: filter 0x%04x\n", value); -- cgit v1.2.3