From 3e1fd612011cbb0c3d6a71303fbd36f193dadc1a Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 11 May 2007 11:24:13 +0000 Subject: gst/rtsp/rtsptransport.c: UDP MCAST is actually the default for RTP/AVP. Original commit message from CVS: * gst/rtsp/rtsptransport.c: UDP MCAST is actually the default for RTP/AVP. --- ChangeLog | 5 +++++ gst/rtsp/rtsptransport.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 23eac2ab..7354e9a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-05-11 Wim Taymans + + * gst/rtsp/rtsptransport.c: + UDP MCAST is actually the default for RTP/AVP. + 2007-05-11 Zaheer Abbas Merali <> * sys/ximage/gstximagesrc.c (gst_ximage_src_start, diff --git a/gst/rtsp/rtsptransport.c b/gst/rtsp/rtsptransport.c index 000a859e..6dcb76be 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_UDP} /* UDP is default */ + {NULL, RTSP_LOWER_TRANS_UDP_MCAST} /* UDP is default */ }; RTSPResult -- cgit