gstreamer/gst/rtpmanager/Makefile.am
Havard Graff 53a45b1222 Initial commit of GstRtpFunnel
For funneling together rtp-streams into a single session.
Use-cases include multiplexing and bundle.
2018-10-15 14:20:58 +02:00

43 lines
1.2 KiB
Makefile

plugin_LTLIBRARIES = libgstrtpmanager.la
libgstrtpmanager_la_SOURCES = gstrtpmanager.c \
gstrtpbin.c \
gstrtpdtmfmux.c \
gstrtpjitterbuffer.c \
gstrtpmux.c \
gstrtpptdemux.c \
gstrtprtxqueue.c \
gstrtprtxreceive.c \
gstrtprtxsend.c \
gstrtpssrcdemux.c \
rtpjitterbuffer.c \
rtpsession.c \
rtpsource.c \
rtpstats.c \
gstrtpsession.c \
gstrtpfunnel.c
noinst_HEADERS = gstrtpbin.h \
gstrtpdtmfmux.h \
gstrtpjitterbuffer.h \
gstrtpmux.h \
gstrtpptdemux.h \
gstrtpssrcdemux.h \
gstrtprtxqueue.h \
gstrtprtxreceive.h \
gstrtprtxsend.h \
rtpjitterbuffer.h \
rtpsession.h \
rtpsource.h \
rtpstats.h \
gstrtpsession.h \
gstrtpfunnel.h
libgstrtpmanager_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
$(GST_NET_CFLAGS) $(WARNING_CFLAGS) $(ERROR_CFLAGS)
libgstrtpmanager_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
$(GST_NET_LIBS) -lgstrtp-@GST_API_VERSION@ \
$(GST_BASE_LIBS) $(GST_LIBS)
libgstrtpmanager_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)