2016-08-12 15:26:31 +00:00
|
|
|
rtsp_sources = [
|
|
|
|
'gstrtsptransport.c',
|
|
|
|
'gstrtspurl.c',
|
|
|
|
'gstrtspmessage.c',
|
|
|
|
'gstrtspconnection.c',
|
|
|
|
'gstrtspdefs.c',
|
|
|
|
'gstrtspextension.c',
|
|
|
|
'gstrtsprange.c'
|
|
|
|
]
|
|
|
|
|
|
|
|
rtsp_headers = [
|
|
|
|
'gstrtspconnection.h',
|
|
|
|
'gstrtspdefs.h',
|
|
|
|
'gstrtspextension.h',
|
|
|
|
'gstrtsp.h',
|
|
|
|
'gstrtspmessage.h',
|
|
|
|
'gstrtsprange.h',
|
|
|
|
'gstrtsptransport.h',
|
|
|
|
'gstrtspurl.h',
|
|
|
|
'rtsp.h',
|
|
|
|
]
|
|
|
|
install_headers(rtsp_headers, subdir : 'gstreamer-1.0/gst/rtsp/')
|
|
|
|
|
|
|
|
mkenums = find_program('rtsp_mkenum.py')
|
|
|
|
|
|
|
|
gstrtsp_h = custom_target('gstrtspenum_h',
|
|
|
|
output : 'gstrtsp-enumtypes.h',
|
|
|
|
input : rtsp_headers,
|
|
|
|
install : true,
|
|
|
|
install_dir : 'include/gstreamer-1.0/gst/rtsp/',
|
|
|
|
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
|
|
|
|
|
|
|
gstrtsp_c = custom_target('gstrtspenum_c',
|
|
|
|
output : 'gstrtsp-enumtypes.c',
|
|
|
|
input : rtsp_headers,
|
|
|
|
depends : [gstrtsp_h],
|
|
|
|
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
|
|
|
|
|
|
|
winsock2 = cc.find_library('ws2_32', required : false)
|
|
|
|
|
2016-10-20 20:17:27 +00:00
|
|
|
gstrtsp_deps = [gst_dep, gio_dep, libm, winsock2]
|
2016-08-12 15:26:31 +00:00
|
|
|
gst_rtsp = library('gstrtsp-@0@'.format(api_version),
|
|
|
|
rtsp_sources,
|
|
|
|
gstrtsp_h, gstrtsp_c,
|
|
|
|
c_args : gst_plugins_base_args,
|
|
|
|
include_directories: [configinc, libsinc],
|
|
|
|
version : libversion,
|
|
|
|
soversion : soversion,
|
|
|
|
install : true,
|
2016-10-20 20:17:27 +00:00
|
|
|
dependencies : gstrtsp_deps,
|
2016-08-12 15:26:31 +00:00
|
|
|
)
|
2016-10-20 20:17:27 +00:00
|
|
|
|
|
|
|
rtsp_gen_sources = [gstrtsp_h]
|
|
|
|
if build_gir
|
2017-04-12 14:06:45 +00:00
|
|
|
gst_gir_extra_args = gir_init_section + [ '--c-include=gst/rtsp/rtsp.h' ]
|
2016-10-20 20:17:27 +00:00
|
|
|
rtsp_gen_sources += [gnome.generate_gir(gst_rtsp,
|
|
|
|
sources : rtsp_sources + rtsp_headers + [gstrtsp_c] + [gstrtsp_h],
|
|
|
|
namespace : 'GstRtsp',
|
|
|
|
nsversion : api_version,
|
|
|
|
identifier_prefix : 'Gst',
|
|
|
|
symbol_prefix : 'gst',
|
|
|
|
export_packages : 'gstreamer-rtsp-1.0',
|
2016-11-10 20:05:19 +00:00
|
|
|
includes : ['Gst-1.0', 'GstSdp-1.0', 'Gio-2.0'],
|
2016-10-20 20:17:27 +00:00
|
|
|
install : true,
|
2017-04-12 14:06:45 +00:00
|
|
|
extra_args : gst_gir_extra_args,
|
2016-11-10 20:05:19 +00:00
|
|
|
dependencies : gstrtsp_deps + [sdp_dep]
|
2016-10-20 20:17:27 +00:00
|
|
|
)]
|
|
|
|
endif
|
2016-08-12 15:26:31 +00:00
|
|
|
|
|
|
|
rtsp_dep = declare_dependency(link_with : gst_rtsp,
|
|
|
|
include_directories : [libsinc],
|
2016-10-20 20:17:27 +00:00
|
|
|
dependencies : gstrtsp_deps,
|
|
|
|
sources : rtsp_gen_sources)
|