Config.in 1.1 KB

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_VLC
  2. bool "vlc"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on !BR2_STATIC_LIBS
  6. depends on BR2_USE_WCHAR
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  8. depends on BR2_TOOLCHAIN_HAS_THREADS
  9. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  10. select BR2_PACKAGE_LIBVORBIS if BR2_PACKAGE_OPUS
  11. select BR2_PACKAGE_VLC_OPENCV3_BACKEND if BR2_PACKAGE_OPENCV3
  12. select BR2_PACKAGE_ZLIB if BR2_PACKAGE_TAGLIB
  13. help
  14. VLC is a free and open source cross-platform multimedia player
  15. and framework that plays most multimedia files as well as DVD,
  16. Audio CD, VCD, and various streaming protocols.
  17. http://www.videolan.org/vlc/
  18. config BR2_PACKAGE_VLC_OPENCV3_BACKEND
  19. bool
  20. select BR2_PACKAGE_OPENCV3_LIB_IMGPROC
  21. select BR2_PACKAGE_OPENCV3_LIB_OBJDETECT
  22. comment "vlc needs a toolchain w/ C++, dynamic library, wchar, threads, gcc >= 4.9, headers >= 3.7"
  23. depends on BR2_USE_MMU
  24. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS \
  25. || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \
  26. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \
  27. || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7