mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
946e1e4363
Original commit message from CVS: * gst/rtsp/Makefile.am: * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type), (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps), (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp), (gst_rtpdec_set_property), (gst_rtpdec_get_property), (gst_rtpdec_change_state): * gst/rtsp/gstrtpdec.h: * gst/rtsp/gstrtsp.c: (plugin_init): * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport): * gst/rtsp/rtspconnection.c: (read_body), (rtsp_connection_receive): * gst/rtsp/rtspmessage.c: (rtsp_message_dump): Resurected rtpdec to make rtspsrc happy again. Skip attributes from the session id. Don't crash when dumping a message with an empty body.
22 lines
679 B
Makefile
22 lines
679 B
Makefile
plugin_LTLIBRARIES = libgstrtsp.la
|
|
|
|
libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \
|
|
gstrtpdec.c \
|
|
rtspconnection.c \
|
|
rtspdefs.c \
|
|
rtspmessage.c \
|
|
rtsptransport.c \
|
|
rtspurl.c \
|
|
sdpmessage.c
|
|
|
|
libgstrtsp_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstrtsp_la_LIBADD = $(GST_LIBS)
|
|
libgstrtsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
check_PROGRAMS = test
|
|
|
|
test_SOURCES = test.c rtspdefs.c rtspurl.c rtspconnection.c rtspmessage.c rtsptransport.c sdpmessage.c
|
|
test_CFLAGS = $(GST_CFLAGS)
|
|
test_LDFLAGS = $(GST_LIBS)
|
|
|
|
noinst_HEADERS = gstrtspsrc.h gstrtsp.h gstrtpdec.h rtsptransport.h rtsp.h rtspurl.h rtspconnection.h rtspdefs.h rtspmessage.h sdp.h sdpmessage.h
|