diff options
author | Steven Toth <stoth@hauppauge.com> | 2006-09-14 14:41:13 -0400 |
---|---|---|
committer | Steven Toth <stoth@hauppauge.com> | 2006-09-14 14:41:13 -0400 |
commit | 4625e6d61a711d6e6ae0b140e73cb95acac7c86a (patch) | |
tree | ff86d265caaff49a3b7323ce0769c743c0899b6e /linux/drivers/media/video/cx88/cx88-input.c | |
parent | 27167428b37b74b3453ab7cfa9465529a38f4d09 (diff) | |
download | mediapointer-dvb-s2-4625e6d61a711d6e6ae0b140e73cb95acac7c86a.tar.gz mediapointer-dvb-s2-4625e6d61a711d6e6ae0b140e73cb95acac7c86a.tar.bz2 |
Basic DVB-T and analog TV support for the HVR1300.
From: Steven Toth <stoth@hauppauge.com>
This is the first in a series of patches to add full WinTV-HVR1300
support to Linux. This first patch will enable analog TV support
and DVB-T support. Later patches will add the hardware MPEG encoder
support.
Signed-off-by: Steven Toth <stoth@hauppauge.com>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-input.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-input.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-input.c b/linux/drivers/media/video/cx88/cx88-input.c index 18165e7cb..21418bb30 100644 --- a/linux/drivers/media/video/cx88/cx88-input.c +++ b/linux/drivers/media/video/cx88/cx88-input.c @@ -196,6 +196,7 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: case CX88_BOARD_HAUPPAUGE_HVR1100: + case CX88_BOARD_HAUPPAUGE_HVR1300: ir_codes = ir_codes_hauppauge_new; ir_type = IR_TYPE_RC5; ir->sampling = 1; @@ -424,6 +425,7 @@ void cx88_ir_irq(struct cx88_core *core) case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: case CX88_BOARD_HAUPPAUGE_HVR1100: + case CX88_BOARD_HAUPPAUGE_HVR1300: ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); ir_dprintk("biphase decoded: %x\n", ircode); if ((ircode & 0xfffff000) != 0x3000) |