xref: /OK3568_Linux_fs/buildroot/package/x265/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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