mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
mpegts: Always clear packetizer on DISCONT push mode
If a discontinuity is detected in push mode, we need to clear the cached section observations since they might have potentially changed. This was only done properly when operating with TIME segments (dvb, udp, adaptive demuxers, ...) but not with BYTE segments (such as with custom app/fd sources). We still don't want to flush out the PCR observations, since this might be needed for seeking in push-based BYTE sources. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1650 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3584>
This commit is contained in:
parent
3fa6651d91
commit
f18186b5dc
1 changed files with 11 additions and 7 deletions
|
@ -1518,16 +1518,20 @@ mpegts_base_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
|
||||||
return res;
|
return res;
|
||||||
|
|
||||||
mpegts_base_flush (base, FALSE);
|
mpegts_base_flush (base, FALSE);
|
||||||
|
if (base->mode == BASE_MODE_PUSHING) {
|
||||||
|
if (base->segment.format == GST_FORMAT_TIME) {
|
||||||
/* In the case of discontinuities in push-mode with TIME segment
|
/* In the case of discontinuities in push-mode with TIME segment
|
||||||
* we want to drop all previous observations (hard:TRUE) from
|
* we want to drop all previous observations (hard:TRUE) from
|
||||||
* the packetizer */
|
* the packetizer */
|
||||||
if (base->mode == BASE_MODE_PUSHING
|
|
||||||
&& base->segment.format == GST_FORMAT_TIME) {
|
|
||||||
mpegts_packetizer_flush (base->packetizer, TRUE);
|
mpegts_packetizer_flush (base->packetizer, TRUE);
|
||||||
|
}
|
||||||
|
/* In all cases, we clear observations when we get a discontinuity in
|
||||||
|
* push-mode to re-check if the sections (PAT/PMT) changed or not */
|
||||||
mpegts_packetizer_clear (base->packetizer);
|
mpegts_packetizer_clear (base->packetizer);
|
||||||
} else
|
} else {
|
||||||
mpegts_packetizer_flush (base->packetizer, FALSE);
|
mpegts_packetizer_flush (base->packetizer, FALSE);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mpegts_packetizer_push (base->packetizer, buf);
|
mpegts_packetizer_push (base->packetizer, buf);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue