mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
rtspsrc: reset connection info to non-flushing when closing
This solves a hanging mainloop in following scenario: * connect to source * network/server drops * pipeline set to NULL (and connection to flushing as part) * pipeline set to PAUSED/PLAYING (connection to non-flushing, but not recorded) * [connecting still not possible] * pipeline set to NULL => mainloop hangs (since no actual flushing is done)
This commit is contained in:
parent
5067d7254f
commit
735924236e
1 changed files with 1 additions and 0 deletions
|
@ -4178,6 +4178,7 @@ gst_rtsp_conninfo_close (GstRTSPSrc * src, GstRTSPConnInfo * info,
|
|||
GST_DEBUG_OBJECT (src, "freeing connection...");
|
||||
gst_rtsp_connection_free (info->connection);
|
||||
info->connection = NULL;
|
||||
info->flushing = FALSE;
|
||||
}
|
||||
GST_RTSP_STATE_UNLOCK (src);
|
||||
return GST_RTSP_OK;
|
||||
|
|
Loading…
Reference in a new issue