mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 10:55:34 +00:00
42b8b3a37f
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init), (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process), (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property), (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init): * gst/rtp/gstrtpmpvdepay.h: Added RFC 2250 MPEG Video Depayloader. * gst/rtp/gstrtpL16depay.h: * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps), (gst_rtp_h263p_depay_process): Fix Header file. Small cleanups. * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize), (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state): * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init), (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize), (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process), (gst_rtp_mp4v_depay_change_state): Remove usused code. Remove Adapter from state Change. Added debug. * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init), (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process): * gst/rtp/gstrtpmpadepay.h: Subclass base depayloader. Added debug. Support static payload type assignment as well. * gst/rtp/gstrtpmpapay.c: Fix caps.
84 lines
1.8 KiB
Makefile
84 lines
1.8 KiB
Makefile
plugin_LTLIBRARIES = libgstrtp.la
|
|
|
|
libgstrtp_la_SOURCES = \
|
|
gstrtp.c \
|
|
gstrtpdepay.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 \
|
|
gstrtph263pay.c \
|
|
gstrtph264depay.c \
|
|
gstasteriskh263.c \
|
|
gstrtpmp2tdepay.c \
|
|
gstrtpmp4vdepay.c \
|
|
gstrtpmp4vpay.c \
|
|
gstrtpmp4gdepay.c \
|
|
gstrtpmp4gpay.c \
|
|
gstrtpspeexdepay.c \
|
|
gstrtpspeexpay.c \
|
|
gstrtpsv3vdepay.c \
|
|
gstrtptheoradepay.c \
|
|
gstrtptheorapay.c \
|
|
gstrtpvorbisdepay.c \
|
|
gstrtpvorbispay.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) \
|
|
-lgsttag-@GST_MAJORMINOR@ \
|
|
-lgstrtp-@GST_MAJORMINOR@ $(WINSOCK2_LIBS)
|
|
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstrtpL16depay.h \
|
|
gstrtpL16pay.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 \
|
|
gstrtph263pay.h \
|
|
gstrtph264depay.h \
|
|
gstrtpmp2tdepay.h \
|
|
gstrtpmp4vdepay.h \
|
|
gstrtpmp4vpay.h \
|
|
gstrtpmp4gdepay.h \
|
|
gstrtpmp4gpay.h \
|
|
gstrtpdepay.h \
|
|
gstasteriskh263.h \
|
|
gstrtpspeexdepay.h \
|
|
gstrtpspeexpay.h \
|
|
gstrtpsv3vdepay.h \
|
|
gstrtptheoradepay.h \
|
|
gstrtptheorapay.h \
|
|
gstrtpvorbisdepay.h \
|
|
gstrtpvorbispay.h
|