mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
5ae66f78c5
Original commit message from CVS: Created Speex payloader and depayloader; Optimize G711 payloader to use adapter and send packets until MTU size.
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
plugin_LTLIBRARIES = libgstrtp.la
|
|
|
|
libgstrtp_la_SOURCES = \
|
|
gstrtp.c \
|
|
gstrtpdec.c \
|
|
gstrtpmpadec.c \
|
|
gstrtpmpaenc.c \
|
|
gstrtpg711enc.c \
|
|
gstrtpg711dec.c \
|
|
gstrtpgsmenc.c \
|
|
gstrtpgsmparse.c \
|
|
gstrtpamrdec.c \
|
|
gstrtpamrenc.c \
|
|
gstrtph263pdec.c \
|
|
gstrtph263penc.c \
|
|
gstrtph263enc.c \
|
|
gstasteriskh263.c \
|
|
gstrtpmp4venc.c \
|
|
gstrtpmp4vdec.c \
|
|
gstrtpspeexenc.c \
|
|
gstrtpspeexdec.c
|
|
|
|
#gstrtpL16enc.c gstrtpL16parse.c gstrtpgsmenc.c gstrtpgsmparse.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 = gstrtpL16enc.h \
|
|
gstrtpL16parse.h \
|
|
gstrtpamrdec.h \
|
|
gstrtpamrenc.h \
|
|
gstrtpg711enc.h \
|
|
gstrtpg711dec.h \
|
|
gstrtpgsmenc.h \
|
|
gstrtpgsmparse.h \
|
|
gstrtpmpadec.h \
|
|
gstrtpmpaenc.h \
|
|
gstrtph263pdec.h \
|
|
gstrtph263penc.h \
|
|
gstrtph263enc.h \
|
|
gstrtpmp4venc.h \
|
|
gstrtpmp4vdec.h \
|
|
gstrtpdec.h \
|
|
gstrtph263enc.h \
|
|
gstasteriskh263.h \
|
|
gstrtpspeexenc.h \
|
|
gstrtpspeexdec.h
|