mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-02 18:23:56 +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) \
|
#define GES_TIMELINE_GET_CLASS(obj) \
|
||||||
(G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TIMELINE, GESTimelineClass))
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TIMELINE, GESTimelineClass))
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GESTimeline:
|
||||||
|
* @tracks: a list of #GESTrack
|
||||||
|
*/
|
||||||
struct _GESTimeline {
|
struct _GESTimeline {
|
||||||
GstBin parent;
|
GstBin parent;
|
||||||
|
|
||||||
GList *layers; /* TimelineLayer(s) ordered by priority */
|
/*< private >*/
|
||||||
GList *tracks; /* TimelineTrack(s) */
|
GList *layers; /* A list of GESTimelineLayer sorted by priority */
|
||||||
|
/*< public >*/
|
||||||
|
GList *tracks;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GESTimelineClass {
|
struct _GESTimelineClass {
|
||||||
|
|
Loading…
Reference in a new issue