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:
Wim Taymans 2007-05-11 09:12:55 +00:00
parent eb5b5a8400
commit 4b69fc4466
2 changed files with 6 additions and 1 deletions

View file

@ -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>
* gst/level/gstlevel.c:

View file

@ -84,7 +84,7 @@ static const RTSPLTransMap ltrans[] = {
{"udp", RTSP_LOWER_TRANS_UDP},
{"mcast", RTSP_LOWER_TRANS_UDP_MCAST},
{"tcp", RTSP_LOWER_TRANS_TCP},
{NULL, RTSP_LOWER_TRANS_UNKNOWN}
{NULL, RTSP_LOWER_TRANS_UDP} /* UDP is default */
};
RTSPResult