mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
8be2ae303a
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>
15 lines
351 B
Meson
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]
|