mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
98acb3260d
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.
19 lines
464 B
Meson
19 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]
|