diff options
author | Luc Saillard <luc@saillard.org> | 2006-04-24 10:29:46 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 01:58:20 -0300 |
commit | 2b455db6d456ef2d44808a8377fd3bc832e08317 (patch) | |
tree | b7b7bcabd53f9bb58d7f69eb6d012735dacd31c7 /drivers/media/video/pwc/Makefile | |
parent | d9e12f25cf538d103426946121d214dff332efbb (diff) | |
download | op-kernel-dev-2b455db6d456ef2d44808a8377fd3bc832e08317.zip op-kernel-dev-2b455db6d456ef2d44808a8377fd3bc832e08317.tar.gz |
V4L/DVB (3835): [PATCH] update pwc driver
Add v4l2 compatibility
Include the decompressor (legal problem has been resolv by Alan Cox)
Faster decoder and easier to maintain, optimize, ...
Can export to userland compressed stream
Support more cameras, lot of bugs are fixed.
Signed-off-by: Luc Saillard <luc@saillard.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/pwc/Makefile')
-rw-r--r-- | drivers/media/video/pwc/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/media/video/pwc/Makefile b/drivers/media/video/pwc/Makefile index 33d6012..9db2260 100644 --- a/drivers/media/video/pwc/Makefile +++ b/drivers/media/video/pwc/Makefile @@ -1,3 +1,12 @@ -pwc-objs := pwc-if.o pwc-misc.o pwc-ctrl.o pwc-uncompress.o pwc-timon.o pwc-kiara.o +pwc-objs := pwc-if.o pwc-misc.o pwc-ctrl.o pwc-v4l.o pwc-uncompress.o +pwc-objs += pwc-dec1.o pwc-dec23.o pwc-kiara.o pwc-timon.o obj-$(CONFIG_USB_PWC) += pwc.o + +ifeq ($(CONFIG_USB_PWC_DEBUG),y) +EXTRA_CFLAGS += -DCONFIG_PWC_DEBUG=1 +else +EXTRA_CFLAGS += -DCONFIG_PWC_DEBUG=0 +endif + + |