2016-08-12 15:55:34 +00:00
|
|
|
asf_sources = [
|
|
|
|
'gstasfdemux.c',
|
|
|
|
'gstasf.c',
|
2021-03-29 11:11:23 +00:00
|
|
|
'gstasfelement.c',
|
2016-08-12 15:55:34 +00:00
|
|
|
'asfheaders.c',
|
|
|
|
'asfpacket.c',
|
|
|
|
'gstrtpasfdepay.c',
|
|
|
|
'gstrtspwms.c',
|
|
|
|
]
|
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
asf_headers = [
|
|
|
|
'gstasfelements.h',
|
|
|
|
'gstasfdemux.h',
|
|
|
|
'asfheaders.h',
|
|
|
|
'gstrtpasfdepay.h',
|
|
|
|
'gstrtspwms.h',
|
|
|
|
'asfpacket.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: asf_sources + asf_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'asf': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if get_option('asfdemux').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:55:34 +00:00
|
|
|
gstasf = library('gstasf',
|
|
|
|
asf_sources,
|
|
|
|
c_args : ugly_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
2016-08-24 12:45:05 +00:00
|
|
|
dependencies : [gstbase_dep, gstrtp_dep, gstvideo_dep,
|
|
|
|
gstaudio_dep, gsttag_dep, gstriff_dep,
|
|
|
|
gstrtsp_dep, gstsdp_dep],
|
2016-08-12 15:55:34 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:47:37 +00:00
|
|
|
plugins += [gstasf]
|