diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-05-11 09:12:55 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-05-11 09:12:55 +0000 |
commit | 4b69fc4466dc9c7c4d4c350afaab4b03c7cfe19c (patch) | |
tree | a1b8657e9df2cfe42a21f34f073333937597f974 | |
parent | eb5b5a840020eb7c66ce57ff225a4698d7236728 (diff) |
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.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/rtsp/rtsptransport.c | 2 |
2 files changed, 6 insertions, 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> * gst/level/gstlevel.c: diff --git a/gst/rtsp/rtsptransport.c b/gst/rtsp/rtsptransport.c index 567df96c..000a859e 100644 --- a/gst/rtsp/rtsptransport.c +++ b/gst/rtsp/rtsptransport.c @@ -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 |