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
	---help---
42 43 44 45 46
	  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.
47 48 49 50

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

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

	  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.

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

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

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

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

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

87
	  If unsure say N.
88

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

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

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

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

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

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

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

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

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

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

117 118 119
config DAB
	boolean "DAB adapters"
	---help---
M
Márton Németh 已提交
120
	  Allow selecting support for Digital Audio Broadcasting (DAB)
121 122 123
	  Receiver adapters.

if DAB
124
config USB_DABUSB
125 126 127 128 129 130 131 132 133 134 135 136
	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.
137
endif # DAB
138

L
Linus Torvalds 已提交
139
endmenu