2 # Multimedia device configuration
5 menuconfig MEDIA_SUPPORT
6 tristate "Multimedia support"
9 If you want to use Video for Linux, DVB for Linux, or DAB adapters,
10 enable this option and other options below.
14 comment "Multimedia core support"
20 config MEDIA_CONTROLLER
21 bool "Media Controller API (EXPERIMENTAL)"
22 depends on EXPERIMENTAL
24 Enable the media controller API used to query media devices internal
25 topology and configure it dynamically.
27 This API is mostly used by camera interfaces in embedded platforms.
30 # V4L core and enabled API's
34 tristate "Video For Linux"
36 V4L core support for video capture and overlay devices, webcams and
39 This kernel includes support for the new Video for Linux Two API,
42 Additional info and docs are available on the web at
45 Documentation for V4L2 is also available on the web at
46 <http://bytesex.org/v4l/>.
48 To compile this driver as a module, choose M here: the
49 module will be called videodev.
51 config VIDEO_V4L2_COMMON
53 depends on (I2C || I2C=n) && VIDEO_DEV
54 default (I2C || I2C=n) && VIDEO_DEV
56 config VIDEO_V4L2_SUBDEV_API
57 bool "V4L2 sub-device userspace API (EXPERIMENTAL)"
58 depends on VIDEO_DEV && MEDIA_CONTROLLER && EXPERIMENTAL
60 Enables the V4L2 sub-device pad-level userspace API used to configure
61 video format, size and frame rate between hardware blocks.
63 This API is mostly used by camera interfaces in embedded platforms.
70 tristate "DVB for Linux"
73 DVB core utility functions for device handling, software fallbacks etc.
75 Enable this if you own a DVB/ATSC adapter and want to use it or if
76 you compile Linux for a digital SetTopBox.
78 Say Y when you have a DVB or an ATSC card and want to use it.
80 API specs and user tools are available from <http://www.linuxtv.org/>.
82 Please report problems regarding this support to the LinuxDVB
88 bool "DVB Network Support"
90 depends on NET && INET && DVB_CORE
92 This option enables DVB Network Support which is a part of the DVB
93 standard. It is used, for example, by automatic firmware updates used
94 on Set-Top-Boxes. It can also be used to access the Internet via the
95 DVB card, if the network provider supports it.
97 You may want to disable the network support on embedded devices. If
102 default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV)
104 comment "Multimedia drivers"
106 source "drivers/media/common/Kconfig"
107 source "drivers/media/rc/Kconfig"
110 # Tuner drivers for DVB and V4L
113 source "drivers/media/common/tuners/Kconfig"
116 # Video/Radio/Hybrid adapters
119 source "drivers/media/video/Kconfig"
121 source "drivers/media/radio/Kconfig"
127 source "drivers/media/dvb/Kconfig"
129 endif # MEDIA_SUPPORT