Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Multimedia device configuration |
| 3 | # |
| 4 | |
| 5 | menu "Multimedia devices" |
Martin Schwidefsky | e25df12 | 2007-05-10 15:45:57 +0200 | [diff] [blame] | 6 | depends on HAS_IOMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 8 | comment "Multimedia core support" |
| 9 | |
| 10 | # |
| 11 | # V4L core and enabled API's |
| 12 | # |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | config VIDEO_DEV |
| 15 | tristate "Video For Linux" |
| 16 | ---help--- |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 17 | V4L core support for video capture and overlay devices, webcams and |
| 18 | AM/FM radio cards. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | This kernel includes support for the new Video for Linux Two API, |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 21 | (V4L2). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 23 | Additional info and docs are available on the web at |
| 24 | <http://linuxtv.org> |
| 25 | |
| 26 | Documentation for V4L2 is also available on the web at |
| 27 | <http://bytesex.org/v4l/>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | To compile this driver as a module, choose M here: the |
| 30 | module will be called videodev. |
| 31 | |
Mauro Carvalho Chehab | a925447 | 2008-01-29 18:32:35 -0300 | [diff] [blame] | 32 | config VIDEO_V4L2_COMMON |
| 33 | tristate |
| 34 | depends on (I2C || I2C=n) && VIDEO_DEV |
| 35 | default (I2C || I2C=n) && VIDEO_DEV |
| 36 | |
Mauro Carvalho Chehab | 17de9a4 | 2008-04-15 18:11:50 -0300 | [diff] [blame] | 37 | config VIDEO_ALLOW_V4L1 |
Mauro Carvalho Chehab | 741b5bb | 2006-05-28 15:45:54 -0300 | [diff] [blame] | 38 | bool "Enable Video For Linux API 1 (DEPRECATED)" |
Mauro Carvalho Chehab | 057596e | 2008-02-02 11:25:31 -0300 | [diff] [blame] | 39 | depends on VIDEO_DEV && VIDEO_V4L2_COMMON |
| 40 | default VIDEO_DEV && VIDEO_V4L2_COMMON |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 41 | ---help--- |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 42 | Enables drivers based on the legacy V4L1 API. |
| 43 | |
| 44 | This api were developed to be used at Kernel 2.2 and 2.4, but |
| 45 | lacks support for several video standards. There are several |
| 46 | drivers at kernel that still depends on it. |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 47 | |
| 48 | If you are unsure as to whether this is required, answer Y. |
| 49 | |
| 50 | config VIDEO_V4L1_COMPAT |
Mauro Carvalho Chehab | d421648 | 2008-07-17 22:25:53 -0300 | [diff] [blame] | 51 | bool "Enable Video For Linux API 1 compatible Layer" if !VIDEO_ALLOW_V4L1 |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 52 | depends on VIDEO_DEV |
Mauro Carvalho Chehab | d421648 | 2008-07-17 22:25:53 -0300 | [diff] [blame] | 53 | default y |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 54 | ---help--- |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 55 | Enables a compatibility API used by most V4L2 devices to allow |
| 56 | its usage with legacy applications that supports only V4L1 api. |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 57 | |
| 58 | Documentation for the original API is included in the file |
| 59 | <Documentation/video4linux/API.html>. |
| 60 | |
| 61 | User tools for this are available from |
| 62 | <ftp://ftp.uk.linux.org/pub/linux/video4linux/>. |
| 63 | |
| 64 | If you are unsure as to whether this is required, answer Y. |
| 65 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 66 | # |
| 67 | # DVB Core |
| 68 | # |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 69 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 70 | config DVB_CORE |
| 71 | tristate "DVB for Linux" |
| 72 | depends on NET && INET |
| 73 | select CRC32 |
| 74 | help |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 75 | DVB core utility functions for device handling, software fallbacks etc. |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 76 | |
| 77 | Enable this if you own a DVB/ATSC adapter and want to use it or if |
| 78 | you compile Linux for a digital SetTopBox. |
| 79 | |
| 80 | Say Y when you have a DVB or an ATSC card and want to use it. |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 81 | |
| 82 | API specs and user tools are available from <http://www.linuxtv.org/>. |
| 83 | |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 84 | Please report problems regarding this support to the LinuxDVB |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 85 | mailing list. |
| 86 | |
| 87 | If unsure say N. |
| 88 | |
| 89 | config VIDEO_MEDIA |
Mauro Carvalho Chehab | 17de9a4 | 2008-04-15 18:11:50 -0300 | [diff] [blame] | 90 | tristate |
Mauro Carvalho Chehab | 039d400 | 2008-05-14 04:36:22 -0300 | [diff] [blame] | 91 | default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV) |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 92 | |
| 93 | comment "Multimedia drivers" |
| 94 | |
| 95 | source "drivers/media/common/Kconfig" |
| 96 | |
| 97 | # |
| 98 | # Tuner drivers for DVB and V4L |
| 99 | # |
| 100 | |
| 101 | source "drivers/media/common/tuners/Kconfig" |
| 102 | |
| 103 | # |
| 104 | # Video/Radio/Hybrid adapters |
| 105 | # |
Mauro Carvalho Chehab | 17de9a4 | 2008-04-15 18:11:50 -0300 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | source "drivers/media/video/Kconfig" |
| 108 | |
| 109 | source "drivers/media/radio/Kconfig" |
| 110 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 111 | # |
| 112 | # DVB adapters |
| 113 | # |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | source "drivers/media/dvb/Kconfig" |
| 116 | |
Mauro Carvalho Chehab | 9a95735 | 2007-05-03 16:01:02 -0300 | [diff] [blame] | 117 | config DAB |
| 118 | boolean "DAB adapters" |
Mauro Carvalho Chehab | 9a95735 | 2007-05-03 16:01:02 -0300 | [diff] [blame] | 119 | ---help--- |
| 120 | Allow selecting support for for Digital Audio Broadcasting (DAB) |
| 121 | Receiver adapters. |
| 122 | |
| 123 | if DAB |
Mauro Carvalho Chehab | 9f6933b | 2006-03-25 09:05:39 -0300 | [diff] [blame] | 124 | config USB_DABUSB |
Mauro Carvalho Chehab | 8dbc5ec | 2006-03-26 08:54:09 -0300 | [diff] [blame] | 125 | tristate "DABUSB driver" |
| 126 | depends on USB |
| 127 | ---help--- |
| 128 | A Digital Audio Broadcasting (DAB) Receiver for USB and Linux |
| 129 | brought to you by the DAB-Team |
| 130 | <http://wwwbode.cs.tum.edu/Par/arch/dab/>. This driver can be taken |
| 131 | as an example for URB-based bulk, control, and isochronous |
| 132 | transactions. URB's are explained in |
| 133 | <Documentation/usb/URB.txt>. |
Mauro Carvalho Chehab | 9f6933b | 2006-03-25 09:05:39 -0300 | [diff] [blame] | 134 | |
Mauro Carvalho Chehab | 8dbc5ec | 2006-03-26 08:54:09 -0300 | [diff] [blame] | 135 | To compile this driver as a module, choose M here: the |
| 136 | module will be called dabusb. |
Mauro Carvalho Chehab | 9a95735 | 2007-05-03 16:01:02 -0300 | [diff] [blame] | 137 | endif # DAB |
Mauro Carvalho Chehab | 9f6933b | 2006-03-25 09:05:39 -0300 | [diff] [blame] | 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | endmenu |