diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-13 08:49:08 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-07-13 08:49:08 +0000 |
commit | 3bda04d4db08675dd03905ba6181d4d14002491b (patch) | |
tree | 6800f4d07bf755ef0c9a24882efb4e0141e6f2f2 /linux/drivers/media/video/cx88/cx88-video.c | |
parent | 9fb3f7d1f2b5c5a6967dad1cd95e3e0f215ef0ec (diff) | |
download | mediapointer-dvb-s2-3bda04d4db08675dd03905ba6181d4d14002491b.tar.gz mediapointer-dvb-s2-3bda04d4db08675dd03905ba6181d4d14002491b.tar.bz2 |
2005-07-08 20:17 mchehab
* cx88-video.c:
- After changing channels, reconfigure audio parameters.
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-video.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-video.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-video.c b/linux/drivers/media/video/cx88/cx88-video.c index eb9681e3c..818ee692c 100644 --- a/linux/drivers/media/video/cx88/cx88-video.c +++ b/linux/drivers/media/video/cx88/cx88-video.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-video.c,v 1.79 2005/07/07 14:17:47 mchehab Exp $ + * $Id: cx88-video.c,v 1.80 2005/07/13 08:49:08 mchehab Exp $ * * device driver for Conexant 2388x based TV cards * video4linux video interface @@ -1621,6 +1621,11 @@ static int video_do_ioctl(struct inode *inode, struct file *file, dev->freq = f->frequency; cx88_newstation(core); cx88_call_i2c_clients(dev->core,VIDIOC_S_FREQUENCY,f); + + /* When changing channels it is required to reset TVAUDIO */ + msleep (10); + cx88_set_tvaudio(core); + up(&dev->lock); return 0; } |