xref: /OK3568_Linux_fs/buildroot/package/libopenh264/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
7config BR2_PACKAGE_LIBOPENH264
8	bool "libopenh264"
9	depends on BR2_INSTALL_LIBSTDCPP
10	depends on !BR2_STATIC_LIBS
11	depends on BR2_TOOLCHAIN_HAS_THREADS
12	depends on BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS
13	help
14	  OpenH264 is a codec library which supports H.264 encoding and
15	  decoding.
16
17	  http://www.openh264.org
18
19comment "libopenh264 needs a toolchain w/ C++, dynamic library, threads"
20	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
21		BR2_STATIC_LIBS
22	depends on BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS
23