mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
nle: Stop wrongly set operation segment base time
Inside the composition we actually do not need to have any notion of what the timing outside the compositon as we already tweak the segment base time outside the composition. This code was only there to work around https://bugzilla.gnome.org/show_bug.cgi?id=753196 https://bugzilla.gnome.org/show_bug.cgi?id=754893
This commit is contained in:
parent
ff388f1d9b
commit
69e9acc823
1 changed files with 0 additions and 6 deletions
|
@ -281,12 +281,6 @@ translate_incoming_segment (NleObject * object, GstEvent * event)
|
|||
segment.time = 0;
|
||||
};
|
||||
|
||||
if (NLE_IS_OPERATION (object)) {
|
||||
segment.base = NLE_OPERATION (object)->next_base_time;
|
||||
GST_INFO_OBJECT (object, "Using operation base time %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (NLE_OPERATION (object)->next_base_time));
|
||||
}
|
||||
|
||||
if (G_UNLIKELY (segment.time > G_MAXINT64))
|
||||
GST_WARNING_OBJECT (object, "Return value too big...");
|
||||
|
||||
|
|
Loading…
Reference in a new issue