pipewire/spa/plugins/audioconvert/meson.build
Wim Taymans b3b47d3fe9 more work on audioconvert
Implement audioconvert as a complex element of fmtconver,
channelmix and resample.
Make copying resample just to test.
Plug the converter into pw_stream.
2018-04-10 15:54:29 +02:00

12 lines
467 B
Meson

audioconvert_sources = ['fmtconvert.c',
'channelmix.c',
'resample.c',
'audioconvert.c',
'plugin.c']
audioconvertlib = shared_library('spa-audioconvert',
audioconvert_sources,
include_directories : [spa_inc, spa_libinc],
link_with : spalib,
install : true,
install_dir : '@0@/spa/audioconvert/'.format(get_option('libdir')))