2015-10-24 21:50:28 +02:00
|
|
|
config BR2_PACKAGE_X265
|
|
|
|
bool "x265"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2015-10-31 23:23:48 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2015-11-13 16:02:14 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # dlfcn
|
2016-03-02 22:33:31 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
2015-10-24 21:50:28 +02:00
|
|
|
help
|
2017-12-18 09:21:05 +01:00
|
|
|
x265 is an open source free software and library for
|
|
|
|
encoding video using the High Efficiency Video Coding
|
|
|
|
(HEVC/H.265) standard. x265 is offered under either the GNU
|
|
|
|
General Public License (GPL) 2 license or a commercial
|
|
|
|
license, similar to the x264 project.
|
2015-10-24 21:50:28 +02:00
|
|
|
|
2019-12-19 22:00:31 +01:00
|
|
|
https://bitbucket.org/multicoreware/x265/wiki/Home
|
2015-10-24 21:50:28 +02:00
|
|
|
|
|
|
|
if BR2_PACKAGE_X265
|
|
|
|
|
|
|
|
config BR2_PACKAGE_X265_CLI
|
|
|
|
bool "CLI"
|
|
|
|
help
|
|
|
|
Command-line tool to encode video streams into the
|
|
|
|
H.265/HEVC compression format.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2015-11-13 16:02:14 +01:00
|
|
|
comment "x265 needs a toolchain w/ C++, threads, dynamic library"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|
2016-03-02 22:33:31 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|