mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
gst/rtsp/rtsptransport.c: Make UDP the default transport when not specified.
Original commit message from CVS: * gst/rtsp/rtsptransport.c: Make UDP the default transport when not specified.
This commit is contained in:
parent
eb5b5a8400
commit
4b69fc4466
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-05-11 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* gst/rtsp/rtsptransport.c:
|
||||||
|
Make UDP the default transport when not specified.
|
||||||
|
|
||||||
2007-05-09 David Schleef <ds@schleef.org>
|
2007-05-09 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* gst/level/gstlevel.c:
|
* gst/level/gstlevel.c:
|
||||||
|
|
|
@ -84,7 +84,7 @@ static const RTSPLTransMap ltrans[] = {
|
||||||
{"udp", RTSP_LOWER_TRANS_UDP},
|
{"udp", RTSP_LOWER_TRANS_UDP},
|
||||||
{"mcast", RTSP_LOWER_TRANS_UDP_MCAST},
|
{"mcast", RTSP_LOWER_TRANS_UDP_MCAST},
|
||||||
{"tcp", RTSP_LOWER_TRANS_TCP},
|
{"tcp", RTSP_LOWER_TRANS_TCP},
|
||||||
{NULL, RTSP_LOWER_TRANS_UNKNOWN}
|
{NULL, RTSP_LOWER_TRANS_UDP} /* UDP is default */
|
||||||
};
|
};
|
||||||
|
|
||||||
RTSPResult
|
RTSPResult
|
||||||
|
|
Loading…
Reference in a new issue