mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
d29215b257
Original commit message from CVS: * gst/rtsp/Makefile.am: * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query), (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open): * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range), (parse_clock_range), (parse_smpte_range), (rtsp_range_parse), (rtsp_range_free): * gst/rtsp/rtsprange.h: Add code to parse time ranges. Report DURATION on the stream when possible.
41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
plugin_LTLIBRARIES = libgstrtsp.la
|
|
|
|
libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \
|
|
gstrtpdec.c \
|
|
rtspconnection.c \
|
|
rtspdefs.c \
|
|
rtspextwms.c \
|
|
rtspmessage.c \
|
|
rtsptransport.c \
|
|
rtsprange.c \
|
|
rtspurl.c \
|
|
sdpmessage.c \
|
|
base64.c
|
|
|
|
libgstrtsp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstrtsp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
|
|
-lgstrtp-@GST_MAJORMINOR@ $(GST_LIBS) $(WIN32_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 base64.c
|
|
test_CFLAGS = $(GST_CFLAGS)
|
|
test_LDFLAGS = $(GST_LIBS) $(WIN32_LIBS)
|
|
|
|
noinst_HEADERS = gstrtspsrc.h \
|
|
gstrtsp.h \
|
|
gstrtpdec.h \
|
|
rtsptransport.h \
|
|
rtsp.h \
|
|
rtspurl.h \
|
|
rtsprange.h \
|
|
rtspconnection.h \
|
|
rtspdefs.h \
|
|
rtspmessage.h \
|
|
sdp.h \
|
|
sdpmessage.h \
|
|
rtspextwms.h \
|
|
rtspext.h \
|
|
base64.h
|