mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
GESTimeline: start more documentation
This commit is contained in:
parent
89429a9225
commit
15aba65202
1 changed files with 8 additions and 2 deletions
|
@ -43,11 +43,17 @@ G_BEGIN_DECLS
|
|||
#define GES_TIMELINE_GET_CLASS(obj) \
|
||||
(G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TIMELINE, GESTimelineClass))
|
||||
|
||||
/**
|
||||
* GESTimeline:
|
||||
* @tracks: a list of #GESTrack
|
||||
*/
|
||||
struct _GESTimeline {
|
||||
GstBin parent;
|
||||
|
||||
GList *layers; /* TimelineLayer(s) ordered by priority */
|
||||
GList *tracks; /* TimelineTrack(s) */
|
||||
/*< private >*/
|
||||
GList *layers; /* A list of GESTimelineLayer sorted by priority */
|
||||
/*< public >*/
|
||||
GList *tracks;
|
||||
};
|
||||
|
||||
struct _GESTimelineClass {
|
||||
|
|
Loading…
Reference in a new issue