2016-08-12 15:42:30 +00:00
|
|
|
rtsp_sources = [
|
2021-02-16 13:35:51 +00:00
|
|
|
'gstrtspelement.c',
|
2016-08-12 15:42:30 +00:00
|
|
|
'gstrtsp.c',
|
|
|
|
'gstrtspsrc.c',
|
|
|
|
'gstrtpdec.c',
|
|
|
|
'gstrtspext.c',
|
|
|
|
]
|
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
rtsp_headers = [
|
|
|
|
'gstrtpdec.h',
|
|
|
|
'gstrtspelements.h',
|
|
|
|
'gstrtspsrc.h',
|
|
|
|
'gstrtspext.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: rtsp_sources + rtsp_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'rtsp': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if get_option('rtsp').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:42:30 +00:00
|
|
|
gstrtsp = library('gstrtsp',
|
|
|
|
rtsp_sources,
|
|
|
|
c_args : gst_plugins_good_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
2022-03-25 19:00:20 +00:00
|
|
|
dependencies : [gstbase_dep, gstrtp_dep, gstrtsp_dep, gstsdp_dep, gstnet_dep, gio_dep],
|
2016-08-12 15:42:30 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:39:55 +00:00
|
|
|
plugins += [gstrtsp]
|