mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 07:09:56 +00:00
mpegdemux: tweak flow return aggregation
This commit is contained in:
parent
a9c0609ae8
commit
ba47769823
1 changed files with 5 additions and 0 deletions
|
@ -2925,6 +2925,11 @@ gst_flups_demux_combine_flows (GstFluPSDemux * demux, GstFlowReturn ret)
|
|||
ret = stream->last_flow;
|
||||
streams++;
|
||||
|
||||
/* some streams may still have to appear,
|
||||
* and only those ones may end up linked */
|
||||
if (G_UNLIKELY (demux->need_no_more_pads && ret == GST_FLOW_NOT_LINKED))
|
||||
ret = GST_FLOW_OK;
|
||||
|
||||
/* no unexpected or unlinked, return */
|
||||
if (G_LIKELY (ret != GST_FLOW_EOS && ret != GST_FLOW_NOT_LINKED))
|
||||
goto done;
|
||||
|
|
Loading…
Reference in a new issue