2017-12-04 15:26:58 +01:00
|
|
|
config BR2_PACKAGE_GSTREAMER1_MM
|
|
|
|
bool "gstreamer1-mm"
|
2021-12-28 15:28:24 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # glibmm -> libsigc
|
2017-12-04 15:26:58 +01:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP # glibmm
|
|
|
|
depends on BR2_USE_WCHAR # glibmm -> libglib2
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
|
|
depends on BR2_USE_MMU # glibmm -> libglib2
|
|
|
|
select BR2_PACKAGE_GLIBMM
|
|
|
|
select BR2_PACKAGE_GSTREAMER1_CHECK
|
|
|
|
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
|
|
|
help
|
|
|
|
gstreamermm provides C++ bindings for the GStreamer streaming
|
|
|
|
multimedia library (http://gstreamer.freedesktop.org). With
|
|
|
|
gstreamermm it is possible to develop applications that work
|
|
|
|
with multimedia in C++.
|
|
|
|
|
|
|
|
gstreamermm is developed over glibmm, libsigc++ and libxml++
|
|
|
|
and the functionalities they provide. This means that, among
|
|
|
|
other things, referencing and unreferencing of GObjects is
|
|
|
|
handled automatically via glibmm's automatic pointer class,
|
|
|
|
Glib::RefPtr, and libsigc++'s slots are used for callbacks and
|
|
|
|
signals.
|
|
|
|
|
|
|
|
https://gstreamer.freedesktop.org/bindings/cplusplus.html
|
|
|
|
|
2021-12-28 15:28:24 +01:00
|
|
|
comment "gstreamer1-mm needs a toolchain w/ C++, wchar, threads, gcc >= 7"
|
2017-12-04 15:26:58 +01:00
|
|
|
depends on BR2_USE_MMU
|
2021-12-28 15:28:24 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || !BR2_USE_WCHAR \
|
2017-12-04 15:26:58 +01:00
|
|
|
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|