mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 05:28:48 +00:00
25a44f8e02
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process): * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_reset_packet), (gst_rtp_vorbis_pay_init_packet), (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id), (gst_rtp_vorbis_pay_handle_buffer): More fixage, set endoder-params correctly in the payloader.
73 lines
1.6 KiB
Makefile
73 lines
1.6 KiB
Makefile
plugin_LTLIBRARIES = libgstrtp.la
|
|
|
|
libgstrtp_la_SOURCES = \
|
|
gstrtp.c \
|
|
gstrtpdepay.c \
|
|
gstrtpmpadepay.c \
|
|
gstrtpmpapay.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 \
|
|
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) \
|
|
-lgstrtp-@GST_MAJORMINOR@ $(WINSOCK2_LIBS)
|
|
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstrtpL16depay.h \
|
|
gstrtpL16pay.h \
|
|
gstrtpamrdepay.h \
|
|
gstrtpamrpay.h \
|
|
gstrtppcmadepay.h \
|
|
gstrtppcmudepay.h \
|
|
gstrtppcmupay.h \
|
|
gstrtppcmapay.h \
|
|
gstrtpgsmdepay.h \
|
|
gstrtpgsmpay.h \
|
|
gstrtpmpadepay.h \
|
|
gstrtpmpapay.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 \
|
|
gstrtpvorbisdepay.h \
|
|
gstrtpvorbispay.h
|