mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
Splits a buffer with multiple non-interleaved channels to multiple buffers, each with 1 channel.
14 lines
539 B
Meson
14 lines
539 B
Meson
audioconvert_sources = ['fmtconvert.c',
|
|
'channelmix.c',
|
|
'resample.c',
|
|
'splitter.c',
|
|
'audioconvert.c',
|
|
'plugin.c']
|
|
|
|
audioconvertlib = shared_library('spa-audioconvert',
|
|
audioconvert_sources,
|
|
include_directories : [spa_inc, spa_libinc],
|
|
dependencies : speexdsp_dep,
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/spa/audioconvert/'.format(get_option('libdir')))
|