mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
rtspsrc: don't add /UDP in the transport, it's the default
don't add the default UDP lower-transport, some servers don't seem to like it. Fixes #630500
This commit is contained in:
parent
7a8c2a4b8a
commit
ef29a59903
1 changed files with 2 additions and 2 deletions
|
@ -4588,8 +4588,8 @@ gst_rtspsrc_create_transports_string (GstRTSPSrc * src,
|
|||
if (*transports != NULL)
|
||||
return GST_RTSP_OK;
|
||||
|
||||
/* it's the default but some servers need it */
|
||||
add_udp_str = TRUE;
|
||||
/* it's the default */
|
||||
add_udp_str = FALSE;
|
||||
|
||||
/* the default RTSP transports */
|
||||
result = g_string_new ("");
|
||||
|
|
Loading…
Reference in a new issue