diff options
author | darron@kewl.org <darron@kewl.org> | 2008-10-30 07:53:07 +0000 |
---|---|---|
committer | darron@kewl.org <darron@kewl.org> | 2008-10-30 07:53:07 +0000 |
commit | 5a55bcc93f549b3db2df8029f040487352ab9759 (patch) | |
tree | 75d9b2073f54ce2055662a52b012a4b0d07063d2 /linux/drivers/media/video/cx88/cx88-core.c | |
parent | e6404f328c9bf8ea423b3e78078dcba7fec4fcb8 (diff) | |
download | mediapointer-dvb-s2-5a55bcc93f549b3db2df8029f040487352ab9759.tar.gz mediapointer-dvb-s2-5a55bcc93f549b3db2df8029f040487352ab9759.tar.bz2 |
tda9887/cx88: secam-bgh
From: Frederic CAND <frederic.cand@anevia.com>
Adds secam bgh support
Signed-off-by: Frederic CAND <frederic.cand@anevia.com>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-core.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-core.c b/linux/drivers/media/video/cx88/cx88-core.c index b2f6dc5c3..c9de13b56 100644 --- a/linux/drivers/media/video/cx88/cx88-core.c +++ b/linux/drivers/media/video/cx88/cx88-core.c @@ -869,6 +869,9 @@ static int set_tvaudio(struct cx88_core *core) } else if (V4L2_STD_SECAM_L & norm) { core->tvaudio = WW_L; + } else if ((V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H) & norm) { + core->tvaudio = WW_BG; + } else if (V4L2_STD_SECAM_DK & norm) { core->tvaudio = WW_DK; |