gstreamer/subprojects/gst-plugins-good/gst/rtpmanager/meson.build
Olivier Crête 0dbe0e21fe rtphdrext-clientaudiolevel: Rename RFC 6464 element
Multiplying elements named after RFC numbers is confusing,
so let's give them meaningful names.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1125>
2021-10-20 00:03:09 +00:00

36 lines
894 B
Meson

rtpmanager_sources = [
'gstrtpmanager.c',
'gstrtpbin.c',
'gstrtpdtmfmux.c',
'gstrtpjitterbuffer.c',
'gstrtphdrext-twcc.c',
'gstrtphdrext-clientaudiolevel.c',
'gstrtpmux.c',
'gstrtpptdemux.c',
'gstrtprtxqueue.c',
'gstrtprtxreceive.c',
'gstrtprtxsend.c',
'gstrtpssrcdemux.c',
'rtpjitterbuffer.c',
'rtpsession.c',
'rtpsource.c',
'rtpstats.c',
'rtptimerqueue.c',
'rtptwcc.c',
'gstrtpsession.c',
'gstrtpfunnel.c',
'gstrtpst2022-1-fecdec.c',
'gstrtpst2022-1-fecenc.c'
]
gstrtpmanager = library('gstrtpmanager',
rtpmanager_sources,
c_args : gst_plugins_good_args,
include_directories : [configinc, libsinc],
dependencies : [gstbase_dep, gstnet_dep, gstrtp_dep, gstaudio_dep, gio_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstrtpmanager, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstrtpmanager]