Config.in 874 B

1234567891011121314151617181920212223242526272829
  1. config 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. https://bitbucket.org/multicoreware/x265/wiki/Home
  14. if BR2_PACKAGE_X265
  15. config BR2_PACKAGE_X265_CLI
  16. bool "CLI"
  17. help
  18. Command-line tool to encode video streams into the
  19. H.265/HEVC compression format.
  20. endif
  21. comment "x265 needs a toolchain w/ C++, threads, dynamic library"
  22. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
  23. !BR2_TOOLCHAIN_HAS_THREADS
  24. depends on BR2_TOOLCHAIN_HAS_SYNC_4