Kconfig 2.5 KB

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