1config 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 19 http://www.videolan.org/vlc/ 20 21config BR2_PACKAGE_VLC_OPENCV3_BACKEND 22 bool 23 select BR2_PACKAGE_OPENCV3_LIB_IMGPROC 24 select BR2_PACKAGE_OPENCV3_LIB_OBJDETECT 25 26comment "vlc needs a toolchain w/ C++, dynamic library, wchar, threads, gcc >= 4.9, headers >= 3.7" 27 depends on !BR2_RISCV_32 28 depends on BR2_USE_MMU 29 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS \ 30 || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \ 31 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \ 32 || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 33