mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 05:01:23 +00:00
dc0610faff
Original commit message from CVS: * gst-libs/gst/rtp * gst-libs/gst/rtp/gstbasertpdepayload.c * gst-libs/gst/rtp/gstbasertpdepayload.h * gst-libs/gst/rtp/gstrtpbuffer.c * gst-libs/gst/rtp/gstrtpbuffer.h * gst-libs/gst/rtp/Makefile.am * gst-libs/gst/rtp/README Support libs for RTP. Basicaly this add a GstRTPBuffer (extended GstBuffer) and a Depayloader Base class that shall be used by payload specific depayloaders.
10 lines
393 B
Makefile
10 lines
393 B
Makefile
libgstrtpincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/rtp
|
|
|
|
libgstrtpinclude_HEADERS = gstrtpbuffer.h gstbasertpdepayload.h
|
|
|
|
lib_LTLIBRARIES = libgstrtp-@GST_MAJORMINOR@.la
|
|
|
|
libgstrtp_@GST_MAJORMINOR@_la_SOURCES = gstrtpbuffer.c gstbasertpdepayload.c
|
|
libgstrtp_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/gst/tags
|
|
libgstrtp_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS)
|
|
|