blob: ed4aa4e7912c39fd3ed764eab623e64490735073 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Multimedia device configuration
3#
4
5menu "Multimedia devices"
6
7config VIDEO_DEV
8 tristate "Video For Linux"
9 ---help---
10 Support for audio/video capture and overlay devices and FM radio
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030011 cards. The exact capabilities of each device vary.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13 This kernel includes support for the new Video for Linux Two API,
14 (V4L2) as well as the original system. Drivers and applications
15 need to be rewritten to use V4L2, but drivers for popular cards
16 and applications for most video capture functions already exist.
17
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030018 Additional info and docs are available on the web at
19 <http://linuxtv.org>
20
21 Documentation for V4L2 is also available on the web at
22 <http://bytesex.org/v4l/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24 To compile this driver as a module, choose M here: the
25 module will be called videodev.
26
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030027config VIDEO_V4L1
Mauro Carvalho Chehab741b5bb2006-05-28 15:45:54 -030028 bool "Enable Video For Linux API 1 (DEPRECATED)"
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030029 depends on VIDEO_DEV
30 select VIDEO_V4L1_COMPAT
31 default y
32 ---help---
33 Enables a compatibility API used by most V4L2 devices to allow
34 its usage with legacy applications that supports only V4L1 api.
35
36 If you are unsure as to whether this is required, answer Y.
37
38config VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab741b5bb2006-05-28 15:45:54 -030039 bool "Enable Video For Linux API 1 compatible Layer"
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030040 depends on VIDEO_DEV
41 default y
42 ---help---
43 This api were developed to be used at Kernel 2.2 and 2.4, but
44 lacks support for several video standards. There are several
45 drivers at kernel that still depends on it.
46
47 Documentation for the original API is included in the file
48 <Documentation/video4linux/API.html>.
49
50 User tools for this are available from
51 <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
52
53 If you are unsure as to whether this is required, answer Y.
54
55config VIDEO_V4L2
Mauro Carvalho Chehab8a905162006-09-10 12:01:19 -030056 bool
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030057 default y
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059source "drivers/media/video/Kconfig"
60
61source "drivers/media/radio/Kconfig"
62
63source "drivers/media/dvb/Kconfig"
64
65source "drivers/media/common/Kconfig"
66
67config VIDEO_TUNER
68 tristate
69
70config VIDEO_BUF
71 tristate
72
73config VIDEO_BUF_DVB
74 tristate
75
76config VIDEO_BTCX
77 tristate
78
79config VIDEO_IR
80 tristate
81
82config VIDEO_TVEEPROM
83 tristate
84
Mauro Carvalho Chehab9f6933b2006-03-25 09:05:39 -030085config USB_DABUSB
Mauro Carvalho Chehab8dbc5ec2006-03-26 08:54:09 -030086 tristate "DABUSB driver"
87 depends on USB
88 ---help---
89 A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
90 brought to you by the DAB-Team
91 <http://wwwbode.cs.tum.edu/Par/arch/dab/>. This driver can be taken
92 as an example for URB-based bulk, control, and isochronous
93 transactions. URB's are explained in
94 <Documentation/usb/URB.txt>.
Mauro Carvalho Chehab9f6933b2006-03-25 09:05:39 -030095
Mauro Carvalho Chehab8dbc5ec2006-03-26 08:54:09 -030096 To compile this driver as a module, choose M here: the
97 module will be called dabusb.
Mauro Carvalho Chehab9f6933b2006-03-25 09:05:39 -030098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099endmenu