mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +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.
25 lines
642 B
Makefile
25 lines
642 B
Makefile
plugin_LTLIBRARIES = libgstrist.la
|
|
|
|
libgstrist_la_SOURCES = \
|
|
gstristsrc.c \
|
|
gstristsink.c \
|
|
gstristrtxsend.c \
|
|
gstristrtxreceive.c \
|
|
gstroundrobin.c \
|
|
gstristplugin.c
|
|
|
|
noinst_HEADERS = \
|
|
gstroundrobin.h \
|
|
gstrist.h
|
|
|
|
libgstrist_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GIO_CFLAGS)
|
|
libgstrist_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
-lgstrtp-@GST_API_VERSION@ \
|
|
$(GST_NET_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GIO_LIBS)
|
|
libgstrist_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstrist_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|