Top | ![]() |
![]() |
![]() |
![]() |
gboolean | ges_layer_add_clip () |
GESClip * | ges_layer_add_asset () |
GESLayer * | ges_layer_new () |
gboolean | ges_layer_remove_clip () |
void | ges_layer_set_priority () |
guint | ges_layer_get_priority () |
GList * | ges_layer_get_clips () |
GESTimeline * | ges_layer_get_timeline () |
gboolean | ges_layer_get_auto_transition () |
void | ges_layer_set_auto_transition () |
gboolean | ges_layer_is_empty () |
GstClockTime | ges_layer_get_duration () |
#define | GES_TIMELINE_GET_LAYERS() |
#define | GES_TIMELINE_GET_TRACKS() |
Responsible for the ordering of the various contained Clip(s). A timeline layer has a "priority" property, which is used to manage the priorities of individual Clips. Two layers should not have the same priority within a given timeline.
gboolean ges_layer_add_clip (GESLayer *layer
,GESClip *clip
);
Adds the given clip to the layer. Sets the clip's parent, and thus takes ownership of the clip.
An clip can only be added to one layer.
Calling this method will construct and properly set all the media related
elements on clip
. If you need to know when those objects (actually GESTrackElement)
are constructed, you should connect to the container::child-added signal which
is emited right after those elements are ready to be used.
GESClip * ges_layer_add_asset (GESLayer *layer
,GESAsset *asset
,GstClockTime start
,GstClockTime inpoint
,GstClockTime duration
,GESTrackType track_types
);
Creates Clip from asset, adds it to layer and returns a reference to it.
layer |
a GESLayer |
|
asset |
The asset to add to |
|
start |
The start value to set on the new GESClip,
if |
|
inpoint |
The inpoint value to set on the new GESClip |
|
duration |
The duration value to set on the new GESClip |
|
track_types |
The GESTrackType to set on the the new GESClip |
gboolean ges_layer_remove_clip (GESLayer *layer
,GESClip *clip
);
Removes the given clip
from the layer
and unparents it.
Unparenting it means the reference owned by layer
on the clip
will be
removed. If you wish to use the clip
after this function, make sure you
call gst_object_ref()
before removing it from the layer
.
void ges_layer_set_priority (GESLayer *layer
,guint priority
);
Sets the layer to the given priority
. See the documentation of the
priority property for more information.
guint
ges_layer_get_priority (GESLayer *layer
);
Get the priority of layer
within the timeline.
GList *
ges_layer_get_clips (GESLayer *layer
);
Get the clips this layer contains.
GESTimeline *
ges_layer_get_timeline (GESLayer *layer
);
Get the GESTimeline in which GESLayer currently is.
the GESTimeline in which GESLayer
currently is or NULL
if not in any timeline yet.
[transfer none]
gboolean
ges_layer_get_auto_transition (GESLayer *layer
);
Gets whether transitions are automatically added when objects overlap or not.
void ges_layer_set_auto_transition (GESLayer *layer
,gboolean auto_transition
);
Sets the layer to the given auto_transition
. See the documentation of the
property auto_transition for more information.
gboolean
ges_layer_is_empty (GESLayer *layer
);
Convenience method to check if layer
is empty (doesn't contain any clip),
or not.
GstClockTime
ges_layer_get_duration (GESLayer *layer
);
Lets you retrieve the duration of the layer, which means the end time of the last clip inside it
typedef struct { /* virtual methods for subclasses */ GList *(*get_objects) (GESLayer * layer); } GESLayerClass;
Subclasses can override the get_objects
if they can provide a more
efficient way of providing the list of contained GESClip(s).
“auto-transition”
property “auto-transition” gboolean
Sets whether transitions are added automagically when clips overlap.
Flags: Read / Write
Default value: FALSE
“priority”
property “priority” guint
The priority of the layer in the GESTimeline. 0 is the highest priority. Conceptually, a GESTimeline is a stack of GESLayers, and the priority of the layer represents its position in the stack. Two layers should not have the same priority within a given GESTimeline.
Note that the timeline needs to be commited (with ges_timeline_commit) for the change to be taken into account.
Flags: Read / Write
Default value: 0
“clip-added”
signalvoid user_function (GESLayer *layer, GESClip *clip, gpointer user_data)
Will be emitted after the clip was added to the layer.
Flags: Run First