1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

rtsp: add rtsp bus

WifiDisplay uses RTSP for stream-setups. This adds a basic rtsp-bus
implementations that we can use for sinks and sources.

Note that the implementation is optimized for usability, not speed. RTSP
is used for control-data, not streaming-data so there's no need to
over-optimize it. In case inlined RTP is used, we still provide proper
speed, even though that's usually not used by WifiDisplay implementations
(due to the TCP requirement).

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
This commit is contained in:
David Herrmann 2014-05-08 11:39:02 +02:00
parent 0d5b431367
commit f6e434e86a
5 changed files with 4224 additions and 0 deletions

View file

@ -72,6 +72,8 @@ AM_LIBADD = \
noinst_LTLIBRARIES += libmiracle-shared.la
libmiracle_shared_la_SOURCES = \
src/shared/rtsp.h \
src/shared/rtsp.c \
src/shared/shl_dlist.h \
src/shared/shl_htable.h \
src/shared/shl_htable.c \
@ -178,6 +180,7 @@ miracled_LDFLAGS = $(AM_LDFLAGS)
#
tests = \
test_rtsp \
test_wpas
if BUILD_HAVE_CHECK