1config BR2_PACKAGE_X265 2 bool "x265" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on !BR2_STATIC_LIBS # dlfcn 6 depends on BR2_TOOLCHAIN_HAS_SYNC_4 7 help 8 x265 is an open source free software and library for 9 encoding video using the High Efficiency Video Coding 10 (HEVC/H.265) standard. x265 is offered under either the GNU 11 General Public License (GPL) 2 license or a commercial 12 license, similar to the x264 project. 13 14 https://bitbucket.org/multicoreware/x265/wiki/Home 15 16if BR2_PACKAGE_X265 17 18config BR2_PACKAGE_X265_CLI 19 bool "CLI" 20 help 21 Command-line tool to encode video streams into the 22 H.265/HEVC compression format. 23 24endif 25 26comment "x265 needs a toolchain w/ C++, threads, dynamic library" 27 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \ 28 !BR2_TOOLCHAIN_HAS_THREADS 29 depends on BR2_TOOLCHAIN_HAS_SYNC_4 30