mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
Use stucture offsets instead of pointers so that we can share the buffer structure between client and server. We can then pass an fd wrapping the memory of the buffer to the client. Add beginnings of a memory pool
16 lines
559 B
Meson
16 lines
559 B
Meson
spalib_sources = ['audio-raw.c',
|
|
'control.c',
|
|
'debug.c',
|
|
'memory.c',
|
|
'props.c',
|
|
'ringbuffer.c',
|
|
'video-raw.c']
|
|
|
|
spalib = shared_library('spa-lib',
|
|
spalib_sources,
|
|
include_directories : inc,
|
|
install : true)
|
|
spalibs = static_library('spa-lib',
|
|
spalib_sources,
|
|
include_directories : inc,
|
|
install : true)
|