pipewire/spa/lib/meson.build
Wim Taymans d828073bb8 Add port direction again
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.
2016-10-03 19:48:24 +02:00

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,
)