mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
tsdemux: In push mode, do not start pull loop if upstream seek fails
This commit is contained in:
parent
108493ee51
commit
e380fbb019
1 changed files with 2 additions and 2 deletions
|
@ -1442,7 +1442,7 @@ mpegts_base_handle_seek_event (MpegTSBase * base, GstPad * pad,
|
||||||
|
|
||||||
if (base->mode == BASE_MODE_PUSHING) {
|
if (base->mode == BASE_MODE_PUSHING) {
|
||||||
GST_ERROR ("seeking in push mode not supported");
|
GST_ERROR ("seeking in push mode not supported");
|
||||||
goto done;
|
goto push_mode;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* stop streaming, either by flushing or by pausing the task */
|
/* stop streaming, either by flushing or by pausing the task */
|
||||||
|
@ -1493,7 +1493,7 @@ mpegts_base_handle_seek_event (MpegTSBase * base, GstPad * pad,
|
||||||
//else
|
//else
|
||||||
done:
|
done:
|
||||||
gst_pad_start_task (base->sinkpad, (GstTaskFunction) mpegts_base_loop, base);
|
gst_pad_start_task (base->sinkpad, (GstTaskFunction) mpegts_base_loop, base);
|
||||||
|
push_mode:
|
||||||
GST_PAD_STREAM_UNLOCK (base->sinkpad);
|
GST_PAD_STREAM_UNLOCK (base->sinkpad);
|
||||||
return ret == GST_FLOW_OK;
|
return ret == GST_FLOW_OK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue