gstreamer/plugins/elements/meson.build
Jan Schmidt 81d55fb479 clocksync: Add new clocksync element
The clocksync element is a generic element that can be
placed in a pipeline to synchronise passing buffers to the
clock at that point. This is similar to 'identity sync=true',
but because it isn't GstBaseTransform-based, it can process
GstBufferLists without breaking them into separate GstBuffers
2020-02-26 16:36:29 +00:00

40 lines
878 B
Meson

gst_elements_sources = [
'gstcapsfilter.c',
'gstclocksync.c',
'gstconcat.c',
'gstdataurisrc.c',
'gstdownloadbuffer.c',
'gstelements.c',
'gstelements_private.c',
'gstfakesink.c',
'gstfakesrc.c',
'gstfdsink.c',
'gstfdsrc.c',
'gstfilesrc.c',
'gstfilesink.c',
'gstfunnel.c',
'gstidentity.c',
'gstinputselector.c',
'gstmultiqueue.c',
'gstoutputselector.c',
'gstqueue2.c',
'gstqueue.c',
'gstsparsefile.c',
'gststreamiddemux.c',
'gsttee.c',
'gsttypefindelement.c',
'gstvalve.c',
]
gst_elements = library('gstcoreelements',
gst_elements_sources,
c_args : gst_c_args,
include_directories : [configinc],
dependencies : [gobject_dep, glib_dep, gst_dep, gst_base_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gst_elements, install_dir : plugins_pkgconfig_install_dir)
plugins += [gst_elements]