mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
TimelineObject: add a property to count the number of effects applied on it
This commit is contained in:
parent
f8154914a0
commit
0e4528112d
1 changed files with 3 additions and 0 deletions
|
@ -93,6 +93,8 @@ struct _GESTimelineObjectPrivate
|
|||
gboolean ignore_notifies;
|
||||
|
||||
GList *mappings;
|
||||
|
||||
guint nb_effects;
|
||||
};
|
||||
|
||||
enum
|
||||
|
@ -255,6 +257,7 @@ ges_timeline_object_init (GESTimelineObject * self)
|
|||
self->height = 1;
|
||||
self->priv->trackobjects = NULL;
|
||||
self->priv->layer = NULL;
|
||||
self->priv->nb_effects = 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue