gstreamer/subprojects/gst-plugins-bad/gst/autoconvert/meson.build
Thibault Saunier 8be2ae303a autoconvert: Add a 'factory-names' property
Making the element more gst-launch friendly.

This also stop trying to handle usage of ->factories atomic and instead
use the object lock to handle them.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/899>
2024-01-31 11:00:23 +00:00

15 lines
351 B
Meson

autocon_sources = [
'gstautoconvert.c',
'gstautovideoconvert.c',
'plugin.c',
]
gstautoconvert = library('gstautoconvert',
autocon_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstpbutils_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstautoconvert]