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