gstreamer/gst/rist/meson.build
Nicolas Dufresne 98acb3260d rist: Add combined bonding-method support
This patchs add support for configuring the bonding method used. There is
two method specified

 - redundant: All the RTP packets are replicated
 - combined: RTP packet are evenly distributed over each links

Additionally, an application can set the "dispatcher" property in order
to implement custom dispatching method. Whenever the "dispatcher"
property is set, "bonding-method" property will be ignored.
2019-05-21 18:49:17 +00:00

20 lines
464 B
Meson

rist_sources = [
'gstroundrobin.c',
'gstristrtxsend.c',
'gstristrtxreceive.c',
'gstristsrc.c',
'gstristsink.c',
'gstristplugin.c',
]
gstrist = library('gstrist',
rist_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstrtp_dep, gstnet_dep, gio_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstrist, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstrist]