2005-04-17 02:20:36 +04:00
|
|
|
#
|
|
|
|
# Multimedia device configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "Multimedia devices"
|
2007-05-10 17:45:57 +04:00
|
|
|
depends on HAS_IOMEM
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
comment "Multimedia core support"
|
|
|
|
|
|
|
|
#
|
|
|
|
# V4L core and enabled API's
|
|
|
|
#
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
config VIDEO_DEV
|
|
|
|
tristate "Video For Linux"
|
|
|
|
---help---
|
|
|
|
Support for audio/video capture and overlay devices and FM radio
|
2006-04-09 22:43:41 +04:00
|
|
|
cards. The exact capabilities of each device vary.
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
This kernel includes support for the new Video for Linux Two API,
|
|
|
|
(V4L2) as well as the original system. Drivers and applications
|
|
|
|
need to be rewritten to use V4L2, but drivers for popular cards
|
|
|
|
and applications for most video capture functions already exist.
|
|
|
|
|
2006-04-09 22:43:41 +04:00
|
|
|
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/>.
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
|
|
module will be called videodev.
|
|
|
|
|
2008-01-30 00:32:35 +03:00
|
|
|
config VIDEO_V4L2_COMMON
|
|
|
|
tristate
|
|
|
|
depends on (I2C || I2C=n) && VIDEO_DEV
|
|
|
|
default (I2C || I2C=n) && VIDEO_DEV
|
|
|
|
|
2008-04-16 01:11:50 +04:00
|
|
|
config VIDEO_ALLOW_V4L1
|
2006-05-28 22:45:54 +04:00
|
|
|
bool "Enable Video For Linux API 1 (DEPRECATED)"
|
2008-02-02 17:25:31 +03:00
|
|
|
depends on VIDEO_DEV && VIDEO_V4L2_COMMON
|
|
|
|
default VIDEO_DEV && VIDEO_V4L2_COMMON
|
2006-04-09 22:43:41 +04:00
|
|
|
select VIDEO_V4L1_COMPAT
|
|
|
|
---help---
|
|
|
|
Enables a compatibility API used by most V4L2 devices to allow
|
|
|
|
its usage with legacy applications that supports only V4L1 api.
|
|
|
|
|
|
|
|
If you are unsure as to whether this is required, answer Y.
|
|
|
|
|
|
|
|
config VIDEO_V4L1_COMPAT
|
2006-05-28 22:45:54 +04:00
|
|
|
bool "Enable Video For Linux API 1 compatible Layer"
|
2006-04-09 22:43:41 +04:00
|
|
|
depends on VIDEO_DEV
|
2008-02-02 17:25:31 +03:00
|
|
|
default VIDEO_DEV
|
2006-04-09 22:43:41 +04:00
|
|
|
---help---
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
#
|
|
|
|
# DVB Core
|
|
|
|
#
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
config DVB_CORE
|
|
|
|
tristate "DVB for Linux"
|
|
|
|
depends on NET && INET
|
|
|
|
select CRC32
|
2007-08-28 04:59:35 +04:00
|
|
|
help
|
2008-04-30 04:38:44 +04:00
|
|
|
Support Digital Video Broadcasting hardware. Enable this if you
|
|
|
|
own a DVB adapter and want to use it or if you compile Linux for
|
|
|
|
a digital SetTopBox.
|
2007-08-28 04:59:35 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
DVB core utility functions for device handling, software fallbacks etc.
|
|
|
|
Say Y when you have a DVB card and want to use it. Say Y if your want
|
|
|
|
to build your drivers outside the kernel, but need the DVB core. All
|
|
|
|
in-kernel drivers will select this automatically if needed.
|
2007-08-28 04:59:35 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
API specs and user tools are available from <http://www.linuxtv.org/>.
|
2007-10-23 22:24:06 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
Please report problems regarding this driver to the LinuxDVB
|
|
|
|
mailing list.
|
2007-08-28 04:59:35 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
If unsure say N.
|
2007-08-28 04:59:35 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
config VIDEO_MEDIA
|
|
|
|
tristate
|
|
|
|
default DVB_CORE || VIDEO_DEV
|
|
|
|
depends on DVB_CORE || VIDEO_DEV
|
2007-10-22 03:48:48 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
comment "Multimedia drivers"
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
source "drivers/media/common/Kconfig"
|
2007-08-23 23:37:49 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
#
|
|
|
|
# Tuner drivers for DVB and V4L
|
|
|
|
#
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
source "drivers/media/common/tuners/Kconfig"
|
2007-08-03 06:31:33 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
#
|
|
|
|
# Video/Radio/Hybrid adapters
|
|
|
|
#
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
source "drivers/media/video/Kconfig"
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
source "drivers/media/radio/Kconfig"
|
2007-06-25 22:42:01 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
#
|
|
|
|
# DVB adapters
|
|
|
|
#
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-30 04:38:44 +04:00
|
|
|
source "drivers/media/dvb/Kconfig"
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-05-03 23:01:02 +04:00
|
|
|
config DAB
|
|
|
|
boolean "DAB adapters"
|
|
|
|
---help---
|
|
|
|
Allow selecting support for for Digital Audio Broadcasting (DAB)
|
|
|
|
Receiver adapters.
|
|
|
|
|
|
|
|
if DAB
|
2006-03-25 15:05:39 +03:00
|
|
|
config USB_DABUSB
|
2006-03-26 15:54:09 +04:00
|
|
|
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.
|
2007-05-03 23:01:02 +04:00
|
|
|
endif # DAB
|
2006-03-25 15:05:39 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
endmenu
|