mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
gst/realmedia/rtspreal.c: Disable UDP transport for now.
Original commit message from CVS: * gst/realmedia/rtspreal.c: (rtsp_ext_real_get_transports), (rtsp_ext_real_parse_sdp), (rtsp_ext_real_stream_select): Disable UDP transport for now.
This commit is contained in:
parent
2d5433b591
commit
646186fc70
2 changed files with 15 additions and 7 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-08-03 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst/realmedia/rtspreal.c: (rtsp_ext_real_get_transports),
|
||||
(rtsp_ext_real_parse_sdp), (rtsp_ext_real_stream_select):
|
||||
Disable UDP transport for now.
|
||||
|
||||
2007-08-03 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst/realmedia/Makefile.am:
|
||||
|
|
|
@ -71,6 +71,7 @@ rtsp_ext_real_get_transports (GstRTSPExtension * ext,
|
|||
|
||||
str = g_string_new ("");
|
||||
|
||||
/*
|
||||
if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST) {
|
||||
g_string_append (str, "x-real-rdt/mcast;client_port=%%u1;mode=play,");
|
||||
}
|
||||
|
@ -78,6 +79,7 @@ rtsp_ext_real_get_transports (GstRTSPExtension * ext,
|
|||
g_string_append (str, "x-real-rdt/udp;client_port=%%u1;mode=play,");
|
||||
g_string_append (str, "x-pn-tng/udp;client_port=%%u1;mode=play,");
|
||||
}
|
||||
*/
|
||||
if (protocols & GST_RTSP_LOWER_TRANS_TCP) {
|
||||
g_string_append (str, "x-real-rdt/tcp;mode=play,");
|
||||
g_string_append (str, "x-pn-tng/tcp;mode=play,");
|
||||
|
|
Loading…
Reference in a new issue