gstreamer/gst/rtp/Makefile.am
Thomas Vander Stichele 2fc868841f gst/rtp/Makefile.am: gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME, fnv1_hash_32_new, fnv1_hash_...
Original commit message from CVS:
* gst/rtp/Makefile.am:
* gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
* gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
Add a simple hashing implementation that we can use to generate
a 24-bit ident value based on the codebooks for vorbis and theora.
* gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
gst_rtp_theora_pay_handle_buffer):
* gst/rtp/gstrtpvorbisdepay.c
(gst_rtp_vorbis_depay_parse_configuration,
gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
* gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
Use the hashing function, ensuring that the same codebooks result
in the same ident and thus the same SDP description.
Various log fixes/changes.
2007-04-12 11:41:11 +00:00

95 lines
2 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 \
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 \
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