home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / drivers / media / Kconfig next >
Encoding:
Text File  |  2006-08-11  |  2.5 KB  |  102 lines

  1. #
  2. # Multimedia device configuration
  3. #
  4.  
  5. menu "Multimedia devices"
  6.  
  7. config VIDEO_DEV
  8.     tristate "Video For Linux"
  9.     ---help---
  10.       Support for audio/video capture and overlay devices and FM radio
  11.       cards. The exact capabilities of each device vary.
  12.  
  13.       This kernel includes support for the new Video for Linux Two API,
  14.       (V4L2) as well as the original system. Drivers and applications
  15.       need to be rewritten to use V4L2, but drivers for popular cards
  16.       and applications for most video capture functions already exist.
  17.  
  18.       Additional info and docs are available on the web at
  19.       <http://linuxtv.org>
  20.  
  21.       Documentation for V4L2 is also available on the web at
  22.       <http://bytesex.org/v4l/>.
  23.  
  24.       To compile this driver as a module, choose M here: the
  25.       module will be called videodev.
  26.  
  27. config VIDEO_V4L1
  28.     boolean "Enable Video For Linux API 1 (DEPRECATED)"
  29.     depends on VIDEO_DEV
  30.     select VIDEO_V4L1_COMPAT
  31.     default y
  32.     ---help---
  33.       Enables a compatibility API used by most V4L2 devices to allow
  34.       its usage with legacy applications that supports only V4L1 api.
  35.  
  36.       If you are unsure as to whether this is required, answer Y.
  37.  
  38. config VIDEO_V4L1_COMPAT
  39.     boolean "Enable Video For Linux API 1 compatible Layer"
  40.     depends on VIDEO_DEV
  41.     default y
  42.     ---help---
  43.       This api were developed to be used at Kernel 2.2 and 2.4, but
  44.       lacks support for several video standards. There are several
  45.       drivers at kernel that still depends on it.
  46.  
  47.       Documentation for the original API is included in the file
  48.       <Documentation/video4linux/API.html>.
  49.  
  50.       User tools for this are available from
  51.       <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
  52.  
  53.       If you are unsure as to whether this is required, answer Y.
  54.  
  55. config VIDEO_V4L2
  56.     tristate
  57.     default y
  58.  
  59. source "drivers/media/video/Kconfig"
  60.  
  61. source "drivers/media/radio/Kconfig"
  62.  
  63. source "drivers/media/dvb/Kconfig"
  64.  
  65. source "drivers/media/common/Kconfig"
  66.  
  67. source "drivers/media/em8300/Kconfig"
  68.  
  69. config VIDEO_TUNER
  70.     tristate
  71.  
  72. config VIDEO_BUF
  73.     tristate
  74.  
  75. config VIDEO_BUF_DVB
  76.     tristate
  77.  
  78. config VIDEO_BTCX
  79.     tristate
  80.  
  81. config VIDEO_IR
  82.     tristate
  83.  
  84. config VIDEO_TVEEPROM
  85.     tristate
  86.  
  87. config USB_DABUSB
  88.     tristate "DABUSB driver"
  89.     depends on USB
  90.     ---help---
  91.       A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
  92.       brought to you by the DAB-Team
  93.       <http://wwwbode.cs.tum.edu/Par/arch/dab/>.  This driver can be taken
  94.       as an example for URB-based bulk, control, and isochronous
  95.       transactions. URB's are explained in
  96.       <Documentation/usb/URB.txt>.
  97.  
  98.       To compile this driver as a module, choose M here: the
  99.       module will be called dabusb.
  100.  
  101. endmenu
  102.