2016-08-12 14:55:17 +00:00
|
|
|
gst_elements_sources = [
|
|
|
|
'gstcapsfilter.c',
|
|
|
|
'gstconcat.c',
|
2016-11-28 13:58:27 +00:00
|
|
|
'gstdataurisrc.c',
|
2016-08-12 14:55:17 +00:00
|
|
|
'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',
|
|
|
|
]
|
|
|
|
|
2018-03-23 16:48:37 +00:00
|
|
|
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,
|
2018-11-02 13:49:01 +00:00
|
|
|
install_dir : plugins_install_dir,
|
2018-03-23 16:48:37 +00:00
|
|
|
)
|
2018-11-02 13:49:01 +00:00
|
|
|
pkgconfig.generate(gst_elements, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 06:14:11 +00:00
|
|
|
|
|
|
|
plugins += [gst_elements]
|