Config.in 1.1 KB

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