mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
basesink: Preroll on out of segment buffers when not dropping them
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6045>
This commit is contained in:
parent
634000d103
commit
728e232add
1 changed files with 5 additions and 1 deletions
|
@ -2185,7 +2185,11 @@ again:
|
||||||
}
|
}
|
||||||
goto do_times;
|
goto do_times;
|
||||||
}
|
}
|
||||||
goto out_of_segment;
|
if (basesink->priv->drop_out_of_segment)
|
||||||
|
goto out_of_segment;
|
||||||
|
|
||||||
|
cstart = start;
|
||||||
|
cstop = stop;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (G_UNLIKELY (start != cstart || stop != cstop)) {
|
if (G_UNLIKELY (start != cstart || stop != cstop)) {
|
||||||
|
|
Loading…
Reference in a new issue