gstreamer/gst/rist/Makefile.am
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

26 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)