diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-05-11 11:24:13 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-05-11 11:24:13 +0000 |
commit | 3e1fd612011cbb0c3d6a71303fbd36f193dadc1a (patch) | |
tree | 525befe3b0ec3223a4c2168631ecc3bd64522b3e /gst | |
parent | 20bc2905bb24f39e1d9b4d580cdff1c4c86fb418 (diff) |
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.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/rtsp/rtsptransport.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |