You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
832 B

  1. #
  2. # Copyright (C) 2014 OpenWrt.org
  3. #
  4. if PACKAGE_mjpg-streamer
  5. config MJPG_STREAMER_V4L2
  6. bool "Build input_uvc with libv4l2 (camera controls)"
  7. default n
  8. select PACKAGE_libv4l
  9. config MJPG_STREAMER_INPUT_FILE
  10. bool "Install input file plugin"
  11. default n
  12. config MJPG_STREAMER_INPUT_UVC
  13. bool "Install input uvc plugin"
  14. default y
  15. config MJPG_STREAMER_INPUT_HTTP
  16. bool "Install input HTTP plugin"
  17. default n
  18. config MJPG_STREAMER_OUTPUT_RTSP
  19. bool "Install output RTSP plugin"
  20. default n
  21. config MJPG_STREAMER_OUTPUT_UDP
  22. bool "Install output UDP plugin"
  23. default n
  24. config MJPG_STREAMER_OUTPUT_FILE
  25. bool "Install output file plugin"
  26. default n
  27. config MJPG_STREAMER_OUTPUT_HTTP
  28. bool "Install output HTTP plugin"
  29. default y
  30. config MJPG_STREAMER_WWW
  31. bool "Install complete Web UI files (includes cambozola)"
  32. default n
  33. endif