diff options
author | Gerd Knorr <devnull@localhost> | 2004-10-25 11:51:00 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-10-25 11:51:00 +0000 |
commit | b25812e7a95e6966a13b51233f489c512ea433ad (patch) | |
tree | ef80c6401780ba91e852b189f87adb6d3b47859d /linux/drivers/media/video | |
parent | 500c59b431256f91f87b8c82dfa13982d08fc780 (diff) | |
download | mediapointer-dvb-s2-b25812e7a95e6966a13b51233f489c512ea433ad.tar.gz mediapointer-dvb-s2-b25812e7a95e6966a13b51233f489c512ea433ad.tar.bz2 |
- cx88 try to make PAL-I sound work.
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-tvaudio.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-tvaudio.c b/linux/drivers/media/video/cx88/cx88-tvaudio.c index b3e2827ef..caa22220f 100644 --- a/linux/drivers/media/video/cx88/cx88-tvaudio.c +++ b/linux/drivers/media/video/cx88/cx88-tvaudio.c @@ -1,5 +1,5 @@ /* - $Id: cx88-tvaudio.c,v 1.23 2004/10/13 10:39:00 kraxel Exp $ + $Id: cx88-tvaudio.c,v 1.24 2004/10/25 11:51:00 kraxel Exp $ cx88x-audio.c - Conexant CX23880/23881 audio downstream driver driver @@ -553,6 +553,13 @@ static void set_audio_standard_A2(struct cx88_core *core) set_audio_start(core, 0x0004, EN_DMTRX_SUMDIFF | EN_A2_AUTO_STEREO); set_audio_registers(core, a2_common); switch (core->tvaudio) { + case WW_NICAM_I: + /* gives at least mono according to the dscaler guys */ + /* so use use that while nicam is broken ... */ + dprintk("%s PAL-I mono (status: unknown)\n",__FUNCTION__); + set_audio_registers(core, a2_table1); + cx_write(AUD_CTL, EN_A2_FORCE_MONO1); + break; case WW_A2_BG: dprintk("%s PAL-BG A2 (status: known-good)\n",__FUNCTION__); set_audio_registers(core, a2_table1); @@ -639,10 +646,11 @@ void cx88_set_tvaudio(struct cx88_core *core) case WW_BTSC: set_audio_standard_BTSC(core,0); break; - case WW_NICAM_I: + // case WW_NICAM_I: case WW_NICAM_BGDKL: set_audio_standard_NICAM(core); break; + case WW_NICAM_I: case WW_A2_BG: case WW_A2_DK: case WW_A2_M: |