2012-06-03 21:21:28 +02:00
|
|
|
config BR2_PACKAGE_MEDIASTREAMER
|
|
|
|
bool "mediastreamer"
|
2020-02-27 18:47:11 +01:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on !BR2_STATIC_LIBS
|
2012-12-11 01:39:00 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # ortp
|
2020-02-27 18:47:09 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # ortp
|
2020-11-17 21:17:02 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
|
2020-02-27 18:47:11 +01:00
|
|
|
select BR2_PACKAGE_MBEDTLS
|
2017-04-22 19:17:59 +02:00
|
|
|
select BR2_PACKAGE_ORTP
|
2012-06-03 21:21:28 +02:00
|
|
|
help
|
|
|
|
Mediastreamer is a powerful and lightweighted streaming
|
|
|
|
engine specialized for voice/video telephony applications.
|
|
|
|
|
|
|
|
It is the library that is responsible for all the receiving
|
|
|
|
and sending of multimedia streams in linphone, including
|
|
|
|
voice/video capture, encoding and decoding, and rendering.
|
|
|
|
|
2019-11-28 17:18:02 +01:00
|
|
|
http://www.linphone.org/technical-corner/mediastreamer2
|
2012-06-03 21:21:28 +02:00
|
|
|
|
2020-11-17 21:17:02 +01:00
|
|
|
comment "mediastreamer needs a toolchain w/ threads, C++, dynamic library, gcc >= 5"
|
2020-02-27 18:47:11 +01:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
2020-11-17 21:17:02 +01:00
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
2020-02-27 18:47:09 +01:00
|
|
|
|
|
|
|
comment "mediastreamer needs a toolchain not affected by GCC bug 64735"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|