mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
rtsp-media: Unprepare suspended medias too
Previously suspended medias immediately reached the UNPREPARED state without going through the media's unprepare() vfunc. This didn't allow the media subclass to do any additional cleanup, and for example the shutdown-eos property of GstRTSPMedia was ignored. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1090>
This commit is contained in:
parent
314901a208
commit
14d636b224
1 changed files with 2 additions and 1 deletions
|
@ -4108,7 +4108,8 @@ gst_rtsp_media_unprepare (GstRTSPMedia * media)
|
|||
set_target_state (media, GST_STATE_NULL, FALSE);
|
||||
success = TRUE;
|
||||
|
||||
if (priv->status == GST_RTSP_MEDIA_STATUS_PREPARED) {
|
||||
if (priv->status == GST_RTSP_MEDIA_STATUS_PREPARED
|
||||
|| priv->status == GST_RTSP_MEDIA_STATUS_SUSPENDED) {
|
||||
GstRTSPMediaClass *klass;
|
||||
|
||||
klass = GST_RTSP_MEDIA_GET_CLASS (media);
|
||||
|
|
Loading…
Reference in a new issue