Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. depends on I2C
  53. config VIDEO_BUF
  54. tristate
  55. config VIDEO_BUF_DVB
  56. tristate
  57. config VIDEO_BTCX
  58. tristate
  59. config VIDEO_IR
  60. tristate
  61. config VIDEO_TVEEPROM
  62. tristate
  63. depends on I2C
  64. config USB_DABUSB
  65. tristate "DABUSB driver"
  66. depends on USB
  67. ---help---
  68. A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
  69. brought to you by the DAB-Team
  70. <http://wwwbode.cs.tum.edu/Par/arch/dab/>. This driver can be taken
  71. as an example for URB-based bulk, control, and isochronous
  72. transactions. URB's are explained in
  73. <Documentation/usb/URB.txt>.
  74. To compile this driver as a module, choose M here: the
  75. module will be called dabusb.
  76. endmenu