mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
19 lines
461 B
Meson
19 lines
461 B
Meson
autocon_sources = [
|
|
'gstbaseautoconvert.c',
|
|
'gstautoconvert.c',
|
|
'gstautovideo.c',
|
|
'gstautovideoconvert.c',
|
|
'gstautodeinterlace.c',
|
|
'gstautovideoflip.c',
|
|
'plugin.c',
|
|
]
|
|
|
|
gstautoconvert = library('gstautoconvert',
|
|
autocon_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstpbutils_dep, gstvideo_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstautoconvert]
|