mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-19 08:57:14 -05:00
videoconvert: beginnings of video converter
This commit is contained in:
parent
18776b155b
commit
b314547702
7 changed files with 1183 additions and 42 deletions
14
spa/plugins/videoconvert/meson.build
Normal file
14
spa/plugins/videoconvert/meson.build
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
videoconvert_sources = ['videoadapter.c',
|
||||
'plugin.c']
|
||||
|
||||
simd_cargs = []
|
||||
simd_dependencies = []
|
||||
|
||||
videoconvertlib = shared_library('spa-videoconvert',
|
||||
videoconvert_sources,
|
||||
c_args : simd_cargs,
|
||||
include_directories : [spa_inc],
|
||||
dependencies : [ mathlib ],
|
||||
link_with : simd_dependencies,
|
||||
install : true,
|
||||
install_dir : '@0@/spa/videoconvert/'.format(get_option('libdir')))
|
||||
Loading…
Add table
Add a link
Reference in a new issue