From e0adc6a155bb772f75bb7ce705a226d2c758198b Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Wed, 18 Mar 2009 22:10:04 +0100 Subject: V4L2 Driver for the Hauppauge HD PVR usb capture device From: Janne Grunau The device encodes component video up to 1080i to a MPEG-TS stream with H.264 video and stereo AAC audio. Newer firmwares accept also AC3 (up to 5.1) audio over optical SPDIF without reencoding. Firmware upgrade is unimplemeted but rather unimportant since the firmware sits on a flash chip. The I2C adapter to drive the integrated infrared receiver/sender is currently disabled due to a conflict with cx18-based devices. Priority: normal Signed-off-by: Janne Grunau Tested-by: Jarod Wilson --- linux/drivers/media/video/hdpvr/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 linux/drivers/media/video/hdpvr/Makefile (limited to 'linux/drivers/media/video/hdpvr/Makefile') diff --git a/linux/drivers/media/video/hdpvr/Makefile b/linux/drivers/media/video/hdpvr/Makefile new file mode 100644 index 000000000..79ad2e16c --- /dev/null +++ b/linux/drivers/media/video/hdpvr/Makefile @@ -0,0 +1,7 @@ +hdpvr-objs := hdpvr-control.o hdpvr-core.o hdpvr-i2c.o hdpvr-video.o + +obj-$(CONFIG_VIDEO_HDPVR) += hdpvr.o + +EXTRA_CFLAGS += -Idrivers/media/video + +EXTRA_CFLAGS += $(extra-cflags-y) $(extra-cflags-m) -- cgit v1.2.3 From 160a63ae7b94800a275bb2b0d5f78b2be4d91b16 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Mon, 23 Mar 2009 22:18:54 +0100 Subject: hdpvr: Fix build with Config_I2C not set From: Janne Grunau Priority: normal Signed-off-by: Janne Grunau --- linux/drivers/media/video/hdpvr/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'linux/drivers/media/video/hdpvr/Makefile') diff --git a/linux/drivers/media/video/hdpvr/Makefile b/linux/drivers/media/video/hdpvr/Makefile index 79ad2e16c..e0230fcb2 100644 --- a/linux/drivers/media/video/hdpvr/Makefile +++ b/linux/drivers/media/video/hdpvr/Makefile @@ -1,4 +1,6 @@ -hdpvr-objs := hdpvr-control.o hdpvr-core.o hdpvr-i2c.o hdpvr-video.o +hdpvr-objs := hdpvr-control.o hdpvr-core.o hdpvr-video.o + +hdpvr-$(CONFIG_I2C) += hdpvr-i2c.o obj-$(CONFIG_VIDEO_HDPVR) += hdpvr.o -- cgit v1.2.3