2019-12-18 23:33:54 +01:00
|
|
|
config BR2_PACKAGE_PIPEWIRE
|
2019-08-26 04:34:02 +02:00
|
|
|
bool "pipewire"
|
2021-05-23 11:29:20 +02:00
|
|
|
depends on !BR2_STATIC_LIBS
|
2022-04-04 18:52:20 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # pthread_setname_np()
|
2021-11-06 11:20:15 +01:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2021-04-27 08:52:01 +02:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
2022-07-27 08:27:31 +02:00
|
|
|
select BR2_PACKAGE_ALSA_LIB_UCM if BR2_PACKAGE_ALSA_LIB
|
|
|
|
select BR2_PACKAGE_ALSA_LIB_SEQ if BR2_PACKAGE_ALSA_LIB
|
2021-07-31 22:38:10 +02:00
|
|
|
select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_AUDIO if BR2_PACKAGE_BLUEZ5_UTILS # runtime
|
2019-08-26 04:34:02 +02:00
|
|
|
help
|
|
|
|
PipeWire is a server and user space API to deal with
|
|
|
|
multimedia pipelines.
|
|
|
|
|
|
|
|
https://pipewire.org/
|
|
|
|
|
2019-12-18 14:04:59 +01:00
|
|
|
if BR2_PACKAGE_PIPEWIRE
|
|
|
|
|
2023-02-13 19:11:20 +01:00
|
|
|
config BR2_PACKAGE_PIPEWIRE_COMPRESS_OFFLOAD
|
|
|
|
bool "pipewire Compress-Offload"
|
|
|
|
depends on !BR2_STATIC_LIBS # tinycompress
|
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_7
|
|
|
|
select BR2_PACKAGE_TINYCOMPRESS
|
|
|
|
help
|
|
|
|
Enable ALSA Compress-Offload support
|
|
|
|
|
|
|
|
comment "pipewire Compress-Offload needs a toolchain w/ dynamic library, headers >= 5.7"
|
|
|
|
depends on BR2_STATIC_LIBS || \
|
|
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_7
|
|
|
|
|
2021-09-10 02:37:25 +02:00
|
|
|
config BR2_PACKAGE_PIPEWIRE_EXAMPLES
|
|
|
|
bool "pipewire examples"
|
|
|
|
help
|
|
|
|
Build pipewire examples
|
|
|
|
|
2019-12-18 14:04:59 +01:00
|
|
|
config BR2_PACKAGE_PIPEWIRE_GSTREAMER
|
|
|
|
bool "pipewire gstreamer plugins"
|
|
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
|
|
depends on BR2_USE_MMU # libglib2
|
|
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
|
|
select BR2_PACKAGE_GSTREAMER1
|
|
|
|
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
|
|
|
help
|
|
|
|
Build GStreamer plugins
|
|
|
|
|
|
|
|
comment "pipewire gstreamer support needs a toolchain w/ wchar, threads"
|
|
|
|
depends on BR2_USE_MMU
|
|
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
|
2021-04-25 23:25:00 +02:00
|
|
|
config BR2_PACKAGE_PIPEWIRE_V4L2
|
|
|
|
bool "pipewire v4l2 plugin"
|
|
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
|
|
|
|
help
|
|
|
|
Build v4l2 plugin
|
2019-12-18 14:04:59 +01:00
|
|
|
|
2021-04-25 23:25:00 +02:00
|
|
|
comment "pipewire v4l2 support needs udev and a toolchain w/ headers >= 3.18"
|
2021-04-25 21:37:42 +02:00
|
|
|
depends on !BR2_PACKAGE_HAS_UDEV || \
|
|
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
|
2021-04-25 23:25:00 +02:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2022-04-04 18:52:20 +02:00
|
|
|
comment "pipewire needs a toolchain w/ dynamic library, NTPL, gcc >= 5"
|
2021-04-25 23:25:00 +02:00
|
|
|
depends on BR2_USE_MMU
|
2022-04-04 18:52:20 +02:00
|
|
|
depends on BR2_STATIC_LIBS || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
|
2021-04-27 08:52:01 +02:00
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|