mirror of
https://github.com/Dasharo/linux.git
synced 2026-03-06 15:25:10 -08:00
[media] usbtv: Add driver for Fushicai USBTV007 video frame grabber
Reverse-engineered driver for cheapo video digitizer, made from observations of Windows XP driver. The protocol is not yet completely understood, so far we don't provide any controls, only support a single format out of three and don't support the audio device. Signed-off-by: Lubomir Rintel <lkundrak@v3.sk> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
8fc350abc6
commit
f3d27f34fd
@@ -18,6 +18,7 @@ source "drivers/media/usb/zr364xx/Kconfig"
|
||||
source "drivers/media/usb/stkwebcam/Kconfig"
|
||||
source "drivers/media/usb/s2255/Kconfig"
|
||||
source "drivers/media/usb/sn9c102/Kconfig"
|
||||
source "drivers/media/usb/usbtv/Kconfig"
|
||||
endif
|
||||
|
||||
if MEDIA_ANALOG_TV_SUPPORT
|
||||
|
||||
@@ -20,3 +20,4 @@ obj-$(CONFIG_VIDEO_STK1160) += stk1160/
|
||||
obj-$(CONFIG_VIDEO_CX231XX) += cx231xx/
|
||||
obj-$(CONFIG_VIDEO_TM6000) += tm6000/
|
||||
obj-$(CONFIG_VIDEO_EM28XX) += em28xx/
|
||||
obj-$(CONFIG_VIDEO_USBTV) += usbtv/
|
||||
|
||||
10
drivers/media/usb/usbtv/Kconfig
Normal file
10
drivers/media/usb/usbtv/Kconfig
Normal file
@@ -0,0 +1,10 @@
|
||||
config VIDEO_USBTV
|
||||
tristate "USBTV007 video capture support"
|
||||
depends on VIDEO_DEV
|
||||
select VIDEOBUF2_VMALLOC
|
||||
|
||||
---help---
|
||||
This is a video4linux2 driver for USBTV007 based video capture devices.
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called usbtv
|
||||
1
drivers/media/usb/usbtv/Makefile
Normal file
1
drivers/media/usb/usbtv/Makefile
Normal file
@@ -0,0 +1 @@
|
||||
obj-$(CONFIG_VIDEO_USBTV) += usbtv.o
|
||||
696
drivers/media/usb/usbtv/usbtv.c
Normal file
696
drivers/media/usb/usbtv/usbtv.c
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user