On Dec 16, Gert Vervoort <gert.vervoort@xxxxxx> wrote: >http://bytesex.org/saa7134/ Thank you, I'm attaching the changes needed to make it detect my card. Tuner and video decoding works, but the audio is not correctly decoded. I hear noise and for some stations something which could be the audio if it is turned on and off many times per second. /dev/radio does not work, do I have to configure something first? -- ciao, Marco
diff -ur saa7134-0.1.3/saa7134-core.c saa7134-0.1.3-Md/saa7134-core.c --- saa7134-0.1.3/saa7134-core.c Mon Dec 10 14:20:45 2001 +++ saa7134-0.1.3-Md/saa7134-core.c Sun Dec 16 17:34:04 2001 @@ -72,6 +72,11 @@ tuner_type: TUNER_ABSENT, tuner_input: -1, }, + [SAA7143_BOARD_FLYVIDEO3000] = { + name: "LifeView FlyVIDEO3000", + tuner_type: TUNER_PHILIPS_PAL, + tuner_input: 1, + }, [SAA7143_BOARD_PROTEUS_PRO] = { name: "Proteus Pro [philips reference design]", tuner_type: TUNER_PHILIPS_PAL, @@ -820,6 +826,12 @@ vendor: PCI_VENDOR_ID_PHILIPS, device: PCI_DEVICE_ID_PHILIPS_SAA7134, subvendor: PCI_VENDOR_ID_PHILIPS, + subdevice: 0, + driver_data: SAA7143_BOARD_FLYVIDEO3000, + },{ + vendor: PCI_VENDOR_ID_PHILIPS, + device: PCI_DEVICE_ID_PHILIPS_SAA7134, + subvendor: PCI_VENDOR_ID_PHILIPS, subdevice: 0x2001, driver_data: SAA7143_BOARD_PROTEUS_PRO, },{ diff -ur saa7134-0.1.3/saa7134.h saa7134-0.1.3-Md/saa7134.h --- saa7134-0.1.3/saa7134.h Thu Dec 6 19:11:01 2001 +++ saa7134-0.1.3-Md/saa7134.h Sun Dec 16 17:31:46 2001 @@ -101,6 +101,7 @@ #define SAA7143_BOARD_UNKNOWN 0 #define SAA7143_BOARD_PROTEUS_PRO 1 +#define SAA7143_BOARD_FLYVIDEO3000 2 struct saa7134_board { char *name;