aggregator: don't leak gap buffer when out of segment

This commit is contained in:
Matthew Waters 2019-03-21 18:55:16 +11:00 committed by Tim-Philipp Müller
parent 0396bc2e64
commit 26bd067ff4

View file

@ -1449,7 +1449,6 @@ gst_aggregator_default_sink_event (GstAggregator * self,
GstBuffer *gapbuf;
gst_event_parse_gap (event, &pts, &duration);
gapbuf = gst_buffer_new ();
if (GST_CLOCK_TIME_IS_VALID (duration))
endpts = pts + duration;
@ -1471,6 +1470,7 @@ gst_aggregator_default_sink_event (GstAggregator * self,
else
duration = GST_CLOCK_TIME_NONE;
gapbuf = gst_buffer_new ();
GST_BUFFER_PTS (gapbuf) = pts;
GST_BUFFER_DURATION (gapbuf) = duration;
GST_BUFFER_FLAG_SET (gapbuf, GST_BUFFER_FLAG_GAP);