mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
fe967d4fe8
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtpL16depay.c: * gst/rtp/gstrtpL16depay.h: * gst/rtp/gstrtpL16parse.c: * gst/rtp/gstrtpL16parse.h: * gst/rtp/gstrtpgsmdepay.c: * gst/rtp/gstrtpgsmdepay.h: * gst/rtp/gstrtpgsmparse.c: * gst/rtp/gstrtpgsmparse.h: parsers are depayers
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
plugin_LTLIBRARIES = libgstrtp.la
|
|
|
|
libgstrtp_la_SOURCES = \
|
|
gstrtp.c \
|
|
gstrtpdepay.c \
|
|
gstrtpmpadepay.c \
|
|
gstrtpmpapay.c \
|
|
gstrtpg711depay.c \
|
|
gstrtpg711pay.c \
|
|
gstrtpgsmdepay.c \
|
|
gstrtpgsmpay.c \
|
|
gstrtpamrdepay.c \
|
|
gstrtpamrpay.c \
|
|
gstrtph263pdepay.c \
|
|
gstrtph263ppay.c \
|
|
gstrtph263pay.c \
|
|
gstasteriskh263.c \
|
|
gstrtpmp4vdepay.c \
|
|
gstrtpmp4vpay.c \
|
|
gstrtpspeexdepay.c \
|
|
gstrtpspeexpay.c
|
|
|
|
#gstrtpL16pay.c gstrtpL16depay.c
|
|
|
|
if HAVE_WINSOCK2_H
|
|
WINSOCK2_LIBS = -lws2_32
|
|
else
|
|
WINSOCK2_LIBS =
|
|
endif
|
|
|
|
libgstrtp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
|
|
-lgstrtp-@GST_MAJORMINOR@ $(WINSOCK2_LIBS)
|
|
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstrtpL16depay.h \
|
|
gstrtpL16pay.h \
|
|
gstrtpamrdepay.h \
|
|
gstrtpamrpay.h \
|
|
gstrtpg711depay.h \
|
|
gstrtpg711pay.h \
|
|
gstrtpgsmdepay.h \
|
|
gstrtpgsmpay.h \
|
|
gstrtpmpadepay.h \
|
|
gstrtpmpapay.h \
|
|
gstrtph263pdepay.h \
|
|
gstrtph263ppay.h \
|
|
gstrtph263pay.h \
|
|
gstrtpmp4vdepay.h \
|
|
gstrtpmp4vpay.h \
|
|
gstrtpdepay.h \
|
|
gstasteriskh263.h \
|
|
gstrtpspeexdepay.h \
|
|
gstrtpspeexpay.h
|