mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
timeline: Never create transition between elements inside the moving context
http://phabricator.freedesktop.org/T74
This commit is contained in:
parent
73e4e3bb0a
commit
9d30b0014d
1 changed files with 3 additions and 0 deletions
|
@ -963,6 +963,9 @@ _create_transitions_on_layer (GESTimeline * timeline, GESLayer * layer,
|
|||
== toplevel)
|
||||
continue;
|
||||
|
||||
if (g_list_find (priv->movecontext.moving_trackelements, next))
|
||||
continue;
|
||||
|
||||
transition_duration = (_START (prev) + _DURATION (prev)) - _START (next);
|
||||
if (transition_duration > 0 && transition_duration < _DURATION (prev) &&
|
||||
transition_duration < _DURATION (next)) {
|
||||
|
|
Loading…
Reference in a new issue