mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
mpegtsbase: Fix previous commit
We only want to do a hard reset of the observations if we're working with TIME segments in push mode. For BYTE segment we want to keep the observations (in order to do seeks in push-mode).
This commit is contained in:
parent
0247dc7489
commit
631b2d8826
1 changed files with 8 additions and 1 deletions
|
@ -1110,7 +1110,14 @@ mpegts_base_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
|
|||
return res;
|
||||
|
||||
mpegts_base_flush (base, FALSE);
|
||||
mpegts_packetizer_flush (base->packetizer, base->mode == BASE_MODE_PUSHING);
|
||||
/* In the case of discontinuities in push-mode with TIME segment
|
||||
* we want to drop all previous observations (hard:TRUE) from
|
||||
* the packetizer */
|
||||
if (base->mode == BASE_MODE_PUSHING
|
||||
&& base->segment.format == GST_FORMAT_TIME)
|
||||
mpegts_packetizer_flush (base->packetizer, TRUE);
|
||||
else
|
||||
mpegts_packetizer_flush (base->packetizer, FALSE);
|
||||
}
|
||||
|
||||
mpegts_packetizer_push (base->packetizer, buf);
|
||||
|
|
Loading…
Reference in a new issue