mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
simplify port numbering again by using 0->max_ports for bot input ports and output ports. This means we need to tall what direction the port is. Add port_info serialize functions Copy metadata and data when we are not sharing buffers. Make pinossink work again.
18 lines
539 B
Meson
18 lines
539 B
Meson
spalib_sources = ['audio-raw.c',
|
|
'buffer.c',
|
|
'control.c',
|
|
'debug.c',
|
|
'format.c',
|
|
'port.c',
|
|
'props.c',
|
|
'ringbuffer.c',
|
|
'video-raw.c']
|
|
|
|
spalib = shared_library('spa-lib',
|
|
spalib_sources,
|
|
include_directories : spa_inc,
|
|
install : true)
|
|
|
|
spalib_dep = declare_dependency(link_with : spalib,
|
|
include_directories : spa_inc,
|
|
)
|