2016-08-12 15:51:45 +00:00
|
|
|
smoothstreaming_sources = [
|
|
|
|
'gstmssdemux.c',
|
|
|
|
'gstmssmanifest.c',
|
2016-11-29 14:18:43 +00:00
|
|
|
'gstmssfragmentparser.c',
|
2016-08-12 15:51:45 +00:00
|
|
|
'gstsmoothstreaming-plugin.c',
|
|
|
|
]
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
xml28_dep = dependency('libxml-2.0', version : '>= 2.8', required : get_option('smoothstreaming'))
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if xml28_dep.found()
|
|
|
|
gstmss = library('gstsmoothstreaming',
|
|
|
|
smoothstreaming_sources,
|
|
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
|
|
link_args : noseh_link_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
dependencies : [gst_dep, gstadaptivedemux_dep, gstcodecparsers_dep,
|
2017-08-26 11:03:06 +00:00
|
|
|
gsturidownloader_dep, gstisoff_dep, xml28_dep, gio_dep],
|
2016-08-12 15:51:45 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstmss]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|