mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
14 lines
496 B
Meson
14 lines
496 B
Meson
audioconvert_sources = ['fmtconvert.c',
|
|
'channelmix.c',
|
|
'resample.c',
|
|
'splitter.c',
|
|
'merger.c',
|
|
'audioconvert.c',
|
|
'plugin.c']
|
|
|
|
audioconvertlib = shared_library('spa-audioconvert',
|
|
audioconvert_sources,
|
|
include_directories : [spa_inc],
|
|
dependencies : speexdsp_dep,
|
|
install : true,
|
|
install_dir : '@0@/spa/audioconvert/'.format(get_option('libdir')))
|