mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
7d92376d3b
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init), (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init), (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps), (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property), (gst_rtp_h263_depay_get_property), (gst_rtp_h263_depay_change_state), (gst_rtp_h263_depay_plugin_init): * gst/rtp/gstrtph263depay.h: Added an H263 depayloader. Fixes #369392. * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps), (gst_rtp_h263p_depay_process): * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type), (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush): Make the H263+ pay/depayloader support H263-1998 and H263-2000 payloads. Also alow plain H263 on the h263p payloaders. Fixes #465040.
97 lines
2.1 KiB
Makefile
97 lines
2.1 KiB
Makefile
plugin_LTLIBRARIES = libgstrtp.la
|
|
|
|
libgstrtp_la_SOURCES = \
|
|
fnv1hash.c \
|
|
gstrtp.c \
|
|
gstrtpdepay.c \
|
|
gstrtpac3depay.c \
|
|
gstrtpilbcdepay.c \
|
|
gstrtpilbcpay.c \
|
|
gstrtpmpadepay.c \
|
|
gstrtpmpapay.c \
|
|
gstrtpmpvdepay.c \
|
|
gstrtppcmadepay.c \
|
|
gstrtppcmudepay.c \
|
|
gstrtppcmupay.c \
|
|
gstrtppcmapay.c \
|
|
gstrtpgsmdepay.c \
|
|
gstrtpgsmpay.c \
|
|
gstrtpamrdepay.c \
|
|
gstrtpamrpay.c \
|
|
gstrtph263pdepay.c \
|
|
gstrtph263ppay.c \
|
|
gstrtph263depay.c \
|
|
gstrtph263pay.c \
|
|
gstrtph264depay.c \
|
|
gstrtph264pay.c \
|
|
gstrtpL16depay.c \
|
|
gstrtpL16pay.c \
|
|
gstasteriskh263.c \
|
|
gstrtpmp2tdepay.c \
|
|
gstrtpmp2tpay.c \
|
|
gstrtpmp4vdepay.c \
|
|
gstrtpmp4vpay.c \
|
|
gstrtpmp4gdepay.c \
|
|
gstrtpmp4gpay.c \
|
|
gstrtpmp4adepay.c \
|
|
gstrtpspeexdepay.c \
|
|
gstrtpspeexpay.c \
|
|
gstrtpsv3vdepay.c \
|
|
gstrtptheoradepay.c \
|
|
gstrtptheorapay.c \
|
|
gstrtpvorbisdepay.c \
|
|
gstrtpvorbispay.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) \
|
|
-lgsttag-@GST_MAJORMINOR@ \
|
|
-lgstrtp-@GST_MAJORMINOR@ $(WINSOCK2_LIBS)
|
|
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
fnv1hash.h \
|
|
gstrtpL16depay.h \
|
|
gstrtpL16pay.h \
|
|
gstrtpac3depay.h \
|
|
gstrtpamrdepay.h \
|
|
gstrtpamrpay.h \
|
|
gstrtpilbcdepay.h \
|
|
gstrtpilbcpay.h \
|
|
gstrtppcmadepay.h \
|
|
gstrtppcmudepay.h \
|
|
gstrtppcmupay.h \
|
|
gstrtppcmapay.h \
|
|
gstrtpgsmdepay.h \
|
|
gstrtpgsmpay.h \
|
|
gstrtpmpadepay.h \
|
|
gstrtpmpapay.h \
|
|
gstrtpmpvdepay.h \
|
|
gstrtph263pdepay.h \
|
|
gstrtph263ppay.h \
|
|
gstrtph263depay.h \
|
|
gstrtph263pay.h \
|
|
gstrtph264depay.h \
|
|
gstrtph264pay.h \
|
|
gstrtpmp2tdepay.h \
|
|
gstrtpmp2tpay.h \
|
|
gstrtpmp4vdepay.h \
|
|
gstrtpmp4vpay.h \
|
|
gstrtpmp4gdepay.h \
|
|
gstrtpmp4gpay.h \
|
|
gstrtpmp4adepay.h \
|
|
gstrtpdepay.h \
|
|
gstasteriskh263.h \
|
|
gstrtpspeexdepay.h \
|
|
gstrtpspeexpay.h \
|
|
gstrtpsv3vdepay.h \
|
|
gstrtptheoradepay.h \
|
|
gstrtptheorapay.h \
|
|
gstrtpvorbisdepay.h \
|
|
gstrtpvorbispay.h
|