mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
rtspsrc: return NO_PREROLL on PLAYING->PAUSED too
When transitioning back to PAUSED and rtspsrc is live, return NO_PREROLL so the pipeline knows to skip preroll here too. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6248>
This commit is contained in:
parent
8356bd04a8
commit
4d2f000125
1 changed files with 3 additions and 1 deletions
|
@ -9648,8 +9648,10 @@ gst_rtspsrc_change_state (GstElement * element, GstStateChange transition)
|
|||
if (rtspsrc->is_live) {
|
||||
/* send pause request and keep the idle task around */
|
||||
gst_rtspsrc_loop_send_cmd (rtspsrc, CMD_PAUSE, CMD_LOOP);
|
||||
ret = GST_STATE_CHANGE_NO_PREROLL;
|
||||
} else {
|
||||
ret = GST_STATE_CHANGE_SUCCESS;
|
||||
}
|
||||
ret = GST_STATE_CHANGE_SUCCESS;
|
||||
break;
|
||||
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
||||
rtspsrc->seek_seqnum = GST_SEQNUM_INVALID;
|
||||
|
|
Loading…
Reference in a new issue