mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
pango: handle GAP event to update text position
This commit is contained in:
parent
62ef0fc55e
commit
b3545604c0
1 changed files with 17 additions and 0 deletions
|
@ -1762,6 +1762,23 @@ gst_base_text_overlay_text_event (GstPad * pad, GstObject * parent,
|
|||
GST_BASE_TEXT_OVERLAY_UNLOCK (overlay);
|
||||
break;
|
||||
}
|
||||
case GST_EVENT_GAP:
|
||||
{
|
||||
GstClockTime start, duration;
|
||||
|
||||
gst_event_parse_gap (event, &start, &duration);
|
||||
if (GST_CLOCK_TIME_IS_VALID (duration))
|
||||
start += duration;
|
||||
/* we do not expect another buffer until after gap,
|
||||
* so that is our position now */
|
||||
overlay->text_segment.position = start;
|
||||
|
||||
/* wake up the video chain, it might be waiting for a text buffer or
|
||||
* a text segment update */
|
||||
GST_BASE_TEXT_OVERLAY_LOCK (overlay);
|
||||
GST_BASE_TEXT_OVERLAY_BROADCAST (overlay);
|
||||
GST_BASE_TEXT_OVERLAY_UNLOCK (overlay);
|
||||
}
|
||||
case GST_EVENT_FLUSH_STOP:
|
||||
GST_BASE_TEXT_OVERLAY_LOCK (overlay);
|
||||
GST_INFO_OBJECT (overlay, "text flush stop");
|
||||
|
|
Loading…
Reference in a new issue