mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
Implement audioconvert as a complex element of fmtconver, channelmix and resample. Make copying resample just to test. Plug the converter into pw_stream.
12 lines
467 B
Meson
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')))
|