mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
rtspsrc: Fix handling of interleaved (TCP) streams
We need to set up the transport in any case, not just if we have a container stream or a non-interleaved stream. Only if we have an interleaved stream and are retrying, we should not set up the stream again. https://bugzilla.gnome.org/show_bug.cgi?id=745599
This commit is contained in:
parent
627e492b7e
commit
c34a7cb90d
1 changed files with 1 additions and 1 deletions
|
@ -6523,7 +6523,7 @@ gst_rtspsrc_setup_streams (GstRTSPSrc * src, gboolean async)
|
|||
break;
|
||||
}
|
||||
|
||||
if (stream->container || (!src->interleaved && !retry)) {
|
||||
if (!src->interleaved || !retry) {
|
||||
/* now configure the stream with the selected transport */
|
||||
if (!gst_rtspsrc_stream_configure_transport (stream, &transport)) {
|
||||
GST_DEBUG_OBJECT (src,
|
||||
|
|
Loading…
Reference in a new issue