aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/video/em28xx/em28xx-core.c
diff options
context:
space:
mode:
authorSascha Sommer <saschasommer@freenet.de>2005-11-08 21:37:33 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-09 07:56:18 -0800
commit74458e6c1aea9e422e46030e7bc61e9b0984be5b (patch)
treea3eb63aee04b2ac457ed44e888a15762c2cc3e13 /drivers/media/video/em28xx/em28xx-core.c
parentd5e5265315770bda46c50ecaa64e2b9790f2064c (diff)
[PATCH] v4l: 786: chip id removed since it isn t required anymore
- Chip_id removed since it isn't required anymore. Signed-off-by: Sascha Sommer <saschasommer@freenet.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/em28xx/em28xx-core.c')
-rw-r--r--drivers/media/video/em28xx/em28xx-core.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/media/video/em28xx/em28xx-core.c b/drivers/media/video/em28xx/em28xx-core.c
index f5e22154a97..f7b8fb035c9 100644
--- a/drivers/media/video/em28xx/em28xx-core.c
+++ b/drivers/media/video/em28xx/em28xx-core.c
@@ -437,6 +437,18 @@ int em2820_scaler_set(struct em2820 *dev, u16 h, u16 v)
buf[0] = v;
buf[1] = v >> 8;
em2820_write_regs(dev, VSCALELOW_REG, (char *)buf, 2);
+ if(dev->is_em2800){
+ /* FIXME */
+ /* random ratio scaling and 720x567 doesn't seem to work */
+ /* the maximum we can get is 640x480 with disabled scaler */
+ /* and norm_maxw set to 640 */
+ if(dev->width == 640 && dev->height == 480)
+ return em2820_write_regs(dev, COMPR_REG,"\x00",1);
+ if(dev->height > 288)
+ return em2820_write_regs(dev, COMPR_REG,"\x10",1);
+ if(dev->width > 360)
+ return em2820_write_regs(dev, COMPR_REG,"\x20",1);
+ }
/* when H and V mixershould be used? */
/* return em2820_write_reg_bits(dev, COMPR_REG, (h ? 0x20 : 0x00) | (v ? 0x10 : 0x00), 0x30); */
/* it seems that both H and V scalers must be active to work correctly */