2016-08-12 15:42:30 +00:00
|
|
|
rtpmanager_sources = [
|
|
|
|
'gstrtpmanager.c',
|
|
|
|
'gstrtpbin.c',
|
|
|
|
'gstrtpdtmfmux.c',
|
|
|
|
'gstrtpjitterbuffer.c',
|
2020-07-10 05:36:54 +00:00
|
|
|
'gstrtphdrext-twcc.c',
|
2021-09-15 18:19:06 +00:00
|
|
|
'gstrtphdrext-clientaudiolevel.c',
|
2016-08-12 15:42:30 +00:00
|
|
|
'gstrtpmux.c',
|
|
|
|
'gstrtpptdemux.c',
|
|
|
|
'gstrtprtxqueue.c',
|
|
|
|
'gstrtprtxreceive.c',
|
|
|
|
'gstrtprtxsend.c',
|
|
|
|
'gstrtpssrcdemux.c',
|
|
|
|
'rtpjitterbuffer.c',
|
|
|
|
'rtpsession.c',
|
|
|
|
'rtpsource.c',
|
|
|
|
'rtpstats.c',
|
2019-06-12 13:59:31 +00:00
|
|
|
'rtptimerqueue.c',
|
2019-06-29 16:06:11 +00:00
|
|
|
'rtptwcc.c',
|
2016-08-12 15:42:30 +00:00
|
|
|
'gstrtpsession.c',
|
2017-10-18 09:14:36 +00:00
|
|
|
'gstrtpfunnel.c',
|
2020-10-06 01:03:13 +00:00
|
|
|
'gstrtpst2022-1-fecdec.c',
|
|
|
|
'gstrtpst2022-1-fecenc.c'
|
2016-08-12 15:42:30 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
gstrtpmanager = library('gstrtpmanager',
|
|
|
|
rtpmanager_sources,
|
|
|
|
c_args : gst_plugins_good_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
2021-01-21 17:04:58 +00:00
|
|
|
dependencies : [gstbase_dep, gstnet_dep, gstrtp_dep, gstaudio_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(gstrtpmanager, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:39:55 +00:00
|
|
|
plugins += [gstrtpmanager]
|