mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
dvbsubenc: Forward GAP events as-is if we wouldn't produce an end packet and are not in the middle of an existing subtitle
An end packet is only produced once for the last subtitle, so multiple GAP events between subtitles would result only in a single end packet and nothing else otherwise. This would potentially starve downstream then, so instead forward the GAP events in that case. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3534>
This commit is contained in:
parent
95979e3a4b
commit
22c326edea
1 changed files with 21 additions and 16 deletions
|
@ -560,24 +560,29 @@ gst_dvb_sub_enc_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
|||
}
|
||||
case GST_EVENT_GAP:
|
||||
{
|
||||
GstClockTime start, duration;
|
||||
|
||||
gst_event_parse_gap (event, &start, &duration);
|
||||
if (GST_CLOCK_TIME_IS_VALID (start)) {
|
||||
if (GST_CLOCK_TIME_IS_VALID (duration))
|
||||
start += duration;
|
||||
/* we do not expect another buffer until after gap,
|
||||
* so that is our position now */
|
||||
GST_DEBUG_OBJECT (enc,
|
||||
"Got GAP event, advancing time to %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (start));
|
||||
gst_dvb_sub_enc_generate_end_packet (enc, start);
|
||||
if (!GST_CLOCK_TIME_IS_VALID (enc->current_end_time)) {
|
||||
ret = gst_pad_event_default (pad, parent, event);
|
||||
} else {
|
||||
GST_WARNING_OBJECT (enc, "Got GAP event with invalid position");
|
||||
}
|
||||
GstClockTime start, duration;
|
||||
|
||||
gst_event_unref (event);
|
||||
ret = TRUE;
|
||||
gst_event_parse_gap (event, &start, &duration);
|
||||
|
||||
if (GST_CLOCK_TIME_IS_VALID (start)) {
|
||||
if (GST_CLOCK_TIME_IS_VALID (duration))
|
||||
start += duration;
|
||||
/* we do not expect another buffer until after gap,
|
||||
* so that is our position now */
|
||||
GST_DEBUG_OBJECT (enc,
|
||||
"Got GAP event, advancing time to %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (start));
|
||||
gst_dvb_sub_enc_generate_end_packet (enc, start);
|
||||
} else {
|
||||
GST_WARNING_OBJECT (enc, "Got GAP event with invalid position");
|
||||
}
|
||||
|
||||
gst_event_unref (event);
|
||||
ret = TRUE;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case GST_EVENT_SEGMENT:
|
||||
|
|
Loading…
Reference in a new issue