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',
|
|
|
|
]
|
|
|
|
|
|
|
|
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-04-24 18:06:10 +00:00
|
|
|
pkgconfig.generate(gstrtsp, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:39:55 +00:00
|
|
|
plugins += [gstrtsp]
|