mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
oggdemux: only keep last valid granulepos
Only keep the last valid granulepos we see when scanning the last pages. It is possible that the last page that we inspect has a -1 granulepos, in which case we want to keep the previous valid time instead. Fixes #631703
This commit is contained in:
parent
9dc59cff15
commit
fea50233bb
1 changed files with 3 additions and 3 deletions
|
@ -2827,9 +2827,9 @@ gst_ogg_demux_read_end_chain (GstOggDemux * ogg, GstOggChain * chain)
|
|||
if (pad->map.serialno == ogg_page_serialno (&og)) {
|
||||
gint64 granulepos = ogg_page_granulepos (&og);
|
||||
|
||||
last_granule = granulepos;
|
||||
last_pad = pad;
|
||||
if (last_granule != -1) {
|
||||
if (granulepos != -1) {
|
||||
last_granule = granulepos;
|
||||
last_pad = pad;
|
||||
done = TRUE;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue