Kconfig 3.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
#
# Multimedia device configuration
#

menu "Multimedia devices"
6
	depends on HAS_IOMEM
L
Linus Torvalds 已提交
7

8 9 10 11 12 13
comment "Multimedia core support"

#
# V4L core and enabled API's
#

L
Linus Torvalds 已提交
14 15 16
config VIDEO_DEV
	tristate "Video For Linux"
	---help---
17 18
	  V4L core support for video capture and overlay devices, webcams and
	  AM/FM radio cards.
L
Linus Torvalds 已提交
19 20

	  This kernel includes support for the new Video for Linux Two API,
21
	  (V4L2).
L
Linus Torvalds 已提交
22

23 24 25 26 27
	  Additional info and docs are available on the web at
	  <http://linuxtv.org>

	  Documentation for V4L2 is also available on the web at
	  <http://bytesex.org/v4l/>.
L
Linus Torvalds 已提交
28 29 30 31

	  To compile this driver as a module, choose M here: the
	  module will be called videodev.

32 33 34 35 36
config VIDEO_V4L2_COMMON
	tristate
	depends on (I2C || I2C=n) && VIDEO_DEV
	default (I2C || I2C=n) && VIDEO_DEV

37
config VIDEO_ALLOW_V4L1
38
	bool "Enable Video For Linux API 1 (DEPRECATED)"
39 40
	depends on VIDEO_DEV && VIDEO_V4L2_COMMON
	default VIDEO_DEV && VIDEO_V4L2_COMMON
41 42
	select VIDEO_V4L1_COMPAT
	---help---
43 44 45 46 47
	  Enables drivers based on the legacy V4L1 API.

	  This api were developed to be used at Kernel 2.2 and 2.4, but
	  lacks support for several video standards. There are several
	  drivers at kernel that still depends on it.
48 49 50 51

	  If you are unsure as to whether this is required, answer Y.

config VIDEO_V4L1_COMPAT
52
	bool "Enable Video For Linux API 1 compatible Layer"
53
	depends on VIDEO_DEV
54
	default VIDEO_DEV
55
	---help---
56 57
	  Enables a compatibility API used by most V4L2 devices to allow
	  its usage with legacy applications that supports only V4L1 api.
58 59 60 61 62 63 64 65 66

	  Documentation for the original API is included in the file
	  <Documentation/video4linux/API.html>.

	  User tools for this are available from
	  <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.

	  If you are unsure as to whether this is required, answer Y.

67 68 69
#
# DVB Core
#
L
Linus Torvalds 已提交
70

71 72 73 74
config DVB_CORE
	tristate "DVB for Linux"
	depends on NET && INET
	select CRC32
75
	help
76
	  DVB core utility functions for device handling, software fallbacks etc.
77 78 79 80 81

	  Enable this if you own a DVB/ATSC adapter and want to use it or if
	  you compile Linux for a digital SetTopBox.

	  Say Y when you have a DVB or an ATSC card and want to use it.
82

83
	  API specs and user tools are available from <http://www.linuxtv.org/>.
84

85
	  Please report problems regarding this support to the LinuxDVB
86
	  mailing list.
87

88
	  If unsure say N.
89

90 91
config VIDEO_MEDIA
	tristate
92
	default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV)
93

94
comment "Multimedia drivers"
L
Linus Torvalds 已提交
95

96
source "drivers/media/common/Kconfig"
97

98 99 100
#
# Tuner drivers for DVB and V4L
#
L
Linus Torvalds 已提交
101

102
source "drivers/media/common/tuners/Kconfig"
103

104 105 106
#
# Video/Radio/Hybrid adapters
#
L
Linus Torvalds 已提交
107

108
source "drivers/media/video/Kconfig"
L
Linus Torvalds 已提交
109

110
source "drivers/media/radio/Kconfig"
111

112 113 114
#
# DVB adapters
#
L
Linus Torvalds 已提交
115

116
source "drivers/media/dvb/Kconfig"
L
Linus Torvalds 已提交
117

118 119 120 121 122 123 124
config DAB
	boolean "DAB adapters"
	---help---
	  Allow selecting support for for Digital Audio Broadcasting (DAB)
	  Receiver adapters.

if DAB
125
config USB_DABUSB
126 127 128 129 130 131 132 133 134 135 136 137
	tristate "DABUSB driver"
	depends on USB
	---help---
	  A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
	  brought to you by the DAB-Team
	  <http://wwwbode.cs.tum.edu/Par/arch/dab/>.  This driver can be taken
	  as an example for URB-based bulk, control, and isochronous
	  transactions. URB's are explained in
	  <Documentation/usb/URB.txt>.

	  To compile this driver as a module, choose M here: the
	  module will be called dabusb.
138
endif # DAB
139

L
Linus Torvalds 已提交
140
endmenu