mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
12192a5fac
Original commit message from CVS: * gst/rtpmanager/Makefile.am: * gst/rtpmanager/gstrtpmanager.c: (plugin_init): * gst/rtpmanager/gstrtpssrcdemux.c: (find_pad_for_ssrc), (create_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init), (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_finalize), (gst_rtp_ssrc_demux_sink_event), (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_src_event), (gst_rtp_ssrc_demux_change_state): * gst/rtpmanager/gstrtpssrcdemux.h: Added simple SSRC demuxer.
26 lines
763 B
Makefile
26 lines
763 B
Makefile
|
|
plugin_LTLIBRARIES = libgstrtpmanager.la
|
|
|
|
libgstrtpmanager_la_SOURCES = gstrtpmanager.c \
|
|
gstrtpbin.c \
|
|
gstrtpclient.c \
|
|
async_jitter_queue.c \
|
|
gstrtpjitterbuffer.c \
|
|
gstrtpptdemux.c \
|
|
gstrtpssrcdemux.c \
|
|
gstrtpsession.c
|
|
|
|
noinst_HEADERS = gstrtpbin.h \
|
|
gstrtpclient.h \
|
|
async_jitter_queue.h \
|
|
gstrtpjitterbuffer.h \
|
|
gstrtpptdemux.h \
|
|
gstrtpssrcdemux.h \
|
|
gstrtpsession.h
|
|
|
|
libgstrtpmanager_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(ERROR_CFLAGS)
|
|
libgstrtpmanager_la_LIBADD = $(GST_LIBS_LIBS)
|
|
libgstrtpmanager_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstrtp-@GST_MAJORMINOR@
|
|
|
|
EXTRA_DIST =
|
|
|