mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
c88ac33128
Original commit message from CVS: * gst/udp/Makefile.am: * gst/udp/gstudp.c: * gst/udp/gstdynudpsink.c: (new) * gst/udp/gstdynudpsink.h: (new) Added new element (udpdynsink) that receives GstNetBuffers and sends the udp packets to the source given in the buffer. It's used by rtpsession element for now. * gst/udp/gstudpsrc.c: Fixed memory leak.
28 lines
856 B
Makefile
28 lines
856 B
Makefile
plugin_LTLIBRARIES = libgstudp.la
|
|
|
|
# variables used for enum/marshal generation
|
|
glib_enum_headers = gstudp.h
|
|
glib_enum_define = GST_UDP
|
|
glib_enum_prefix = gst_udp
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|
|
|
|
built_sources = gstudp-enumtypes.c gstudp-marshal.c
|
|
built_headers = gstudp-enumtypes.h gstudp-marshal.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
libgstudp_la_SOURCES = gstudp.c gstudpsrc.c gstudpsink.c gstmultiudpsink.c gstdynudpsink.c
|
|
libgstudp_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstudp_la_LIBADD =
|
|
libgstudp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstnet-0.9
|
|
|
|
nodist_libgstudp_la_SOURCES = \
|
|
$(built_sources)
|
|
|
|
noinst_HEADERS = gstudpsink.h gstudpsrc.h gstudp.h gstmultiudpsink.h gstdynudpsink.h
|
|
|
|
EXTRA_DIST = README gstudp-marshal.list
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|