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

5 6
menuconfig MEDIA_SUPPORT
	tristate "Multimedia support"
7
	depends on HAS_IOMEM
8 9 10 11 12
	help
	  If you want to use Video for Linux, DVB for Linux, or DAB adapters,
	  enable this option and other options below.

if MEDIA_SUPPORT
L
Linus Torvalds 已提交
13

14 15 16 17 18 19
comment "Multimedia core support"

#
# V4L core and enabled API's
#

L
Linus Torvalds 已提交
20 21 22
config VIDEO_DEV
	tristate "Video For Linux"
	---help---
23 24
	  V4L core support for video capture and overlay devices, webcams and
	  AM/FM radio cards.
L
Linus Torvalds 已提交
25 26

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

29 30 31 32 33
	  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 已提交
34 35 36 37

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

38 39 40 41 42
config VIDEO_V4L2_COMMON
	tristate
	depends on (I2C || I2C=n) && VIDEO_DEV
	default (I2C || I2C=n) && VIDEO_DEV

43
config VIDEO_ALLOW_V4L1
44
	bool "Enable Video For Linux API 1 (DEPRECATED)"
45 46
	depends on VIDEO_DEV && VIDEO_V4L2_COMMON
	default VIDEO_DEV && VIDEO_V4L2_COMMON
47
	---help---
48 49 50 51 52
	  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.
53 54 55 56

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

config VIDEO_V4L1_COMPAT
57
	bool "Enable Video For Linux API 1 compatible Layer" if !VIDEO_ALLOW_V4L1
58
	depends on VIDEO_DEV
59
	default y
60
	---help---
61 62
	  Enables a compatibility API used by most V4L2 devices to allow
	  its usage with legacy applications that supports only V4L1 api.
63 64 65 66 67 68 69 70 71

	  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.

72 73 74
#
# DVB Core
#
L
Linus Torvalds 已提交
75

76 77 78 79
config DVB_CORE
	tristate "DVB for Linux"
	depends on NET && INET
	select CRC32
80
	help
81
	  DVB core utility functions for device handling, software fallbacks etc.
82 83 84 85 86

	  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.
87

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

90
	  Please report problems regarding this support to the LinuxDVB
91
	  mailing list.
92

93
	  If unsure say N.
94

95 96
config VIDEO_MEDIA
	tristate
97
	default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV)
98

99
comment "Multimedia drivers"
L
Linus Torvalds 已提交
100

101
source "drivers/media/common/Kconfig"
102

103 104 105
#
# Tuner drivers for DVB and V4L
#
L
Linus Torvalds 已提交
106

107
source "drivers/media/common/tuners/Kconfig"
108

109 110 111
#
# Video/Radio/Hybrid adapters
#
L
Linus Torvalds 已提交
112

113
source "drivers/media/video/Kconfig"
L
Linus Torvalds 已提交
114

115
source "drivers/media/radio/Kconfig"
116

117 118 119
#
# DVB adapters
#
L
Linus Torvalds 已提交
120

121
source "drivers/media/dvb/Kconfig"
L
Linus Torvalds 已提交
122

123 124 125
config DAB
	boolean "DAB adapters"
	---help---
M
Márton Németh 已提交
126
	  Allow selecting support for Digital Audio Broadcasting (DAB)
127 128 129
	  Receiver adapters.

if DAB
130
config USB_DABUSB
131 132 133 134 135 136 137 138 139 140 141 142
	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.
143
endif # DAB
144

145
endif # MEDIA_SUPPORT