1config BR2_PACKAGE_MEDIASTREAMER 2 bool "mediastreamer" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on !BR2_STATIC_LIBS 5 depends on BR2_TOOLCHAIN_HAS_THREADS # ortp 6 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # ortp 7 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14 8 select BR2_PACKAGE_MBEDTLS 9 select BR2_PACKAGE_ORTP 10 help 11 Mediastreamer is a powerful and lightweighted streaming 12 engine specialized for voice/video telephony applications. 13 14 It is the library that is responsible for all the receiving 15 and sending of multimedia streams in linphone, including 16 voice/video capture, encoding and decoding, and rendering. 17 18 http://www.linphone.org/technical-corner/mediastreamer2 19 20comment "mediastreamer needs a toolchain w/ threads, C++, dynamic library, gcc >= 5" 21 depends on !BR2_INSTALL_LIBSTDCPP || \ 22 !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \ 23 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 24 25comment "mediastreamer needs a toolchain not affected by GCC bug 64735" 26 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 27