Config.in 718 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS
  2. bool
  3. default y if BR2_arm || BR2_armeb || BR2_aarch64 || BR2_i386 || \
  4. BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \
  5. BR2_x86_64
  6. config BR2_PACKAGE_LIBOPENH264
  7. bool "libopenh264"
  8. depends on BR2_INSTALL_LIBSTDCPP
  9. depends on !BR2_STATIC_LIBS
  10. depends on BR2_TOOLCHAIN_HAS_THREADS
  11. depends on BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS
  12. help
  13. OpenH264 is a codec library which supports H.264 encoding and
  14. decoding.
  15. http://www.openh264.org
  16. comment "libopenh264 needs a toolchain w/ C++, dynamic library, threads"
  17. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
  18. BR2_STATIC_LIBS
  19. depends on BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS