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',
|
|
|
|
]
|
|
|
|
|
|
|
|
if libtype != 'shared'
|
|
|
|
gst_elements_static = static_library('gstcoreelements',
|
|
|
|
gst_elements_sources,
|
2017-05-16 17:29:38 +00:00
|
|
|
c_args : gst_c_args,
|
2016-08-12 14:55:17 +00:00
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gobject_dep, glib_dep, gst_dep, gst_base_dep],
|
|
|
|
install : true,
|
2017-07-11 18:55:42 +00:00
|
|
|
install_dir : join_paths(get_option('libdir'), 'gstreamer-1.0'),
|
2016-08-12 14:55:17 +00:00
|
|
|
)
|
|
|
|
gst_elements = gst_elements_static
|
|
|
|
endif
|
|
|
|
|
|
|
|
if libtype != 'static'
|
|
|
|
gst_elements_shared = shared_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,
|
2017-07-11 18:55:42 +00:00
|
|
|
install_dir : join_paths(get_option('libdir'), 'gstreamer-1.0'),
|
2016-08-12 14:55:17 +00:00
|
|
|
)
|
|
|
|
gst_elements = gst_elements_shared
|
|
|
|
endif
|