mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
f9d2e49e40
Original commit message from CVS: * gst/rtp/README: Say something about case-sensitivity of caps vs mime-attributes. * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_handle_buffer): * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type), (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init), (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer), (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property), (gst_rtp_mp4g_pay_plugin_init): * gst/rtp/gstrtpmp4gpay.h: Added beginnings of mpeg4-generic payloader (RFC 3640)
57 lines
1.2 KiB
Makefile
57 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 \
|
|
gstrtpmp4gpay.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 \
|
|
gstrtpmp4gpay.h \
|
|
gstrtpdepay.h \
|
|
gstasteriskh263.h \
|
|
gstrtpspeexdepay.h \
|
|
gstrtpspeexpay.h
|