mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 15:18:21 +00:00
ges: Documentations fixes
This commit is contained in:
parent
02652902f5
commit
ae9b006d05
2 changed files with 6 additions and 6 deletions
|
@ -144,14 +144,14 @@ typedef GList * (*GESCreateTrackObjectsFunc) (GESTimelineObject * object, GESTra
|
||||||
* GESTimelineObject:
|
* GESTimelineObject:
|
||||||
*
|
*
|
||||||
* The #GESTimelineObject base class.
|
* The #GESTimelineObject base class.
|
||||||
|
* @trackobjects: (element-type GES.TrackObject): A list of TrackObject
|
||||||
|
* controlled by this TimelineObject sorted by priority. NOTE: Do not modify.
|
||||||
*/
|
*/
|
||||||
struct _GESTimelineObject
|
struct _GESTimelineObject
|
||||||
{
|
{
|
||||||
GInitiallyUnowned parent;
|
GInitiallyUnowned parent;
|
||||||
|
|
||||||
/*< readonly >*/
|
/*< readonly >*/
|
||||||
/* A list of TrackObject controlled by this TimelineObject sorted by
|
|
||||||
* priority */
|
|
||||||
GList *trackobjects;
|
GList *trackobjects;
|
||||||
|
|
||||||
/* We don't add those properties to the priv struct for optimization purposes
|
/* We don't add those properties to the priv struct for optimization purposes
|
||||||
|
@ -161,7 +161,6 @@ struct _GESTimelineObject
|
||||||
guint64 duration; /* duration of the object used in the layer */
|
guint64 duration; /* duration of the object used in the layer */
|
||||||
guint32 priority; /* priority of the object in the layer (0:top priority) */
|
guint32 priority; /* priority of the object in the layer (0:top priority) */
|
||||||
guint32 height; /* the span of priorities this object needs */
|
guint32 height; /* the span of priorities this object needs */
|
||||||
|
|
||||||
guint64 fullduration; /* Full usable duration of the object (-1: no duration) */
|
guint64 fullduration; /* Full usable duration of the object (-1: no duration) */
|
||||||
|
|
||||||
/*< protected >*/
|
/*< protected >*/
|
||||||
|
|
|
@ -60,15 +60,16 @@ typedef struct _GESTimelinePrivate GESTimelinePrivate;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GESTimeline:
|
* GESTimeline:
|
||||||
*
|
* @layers: (element-type GES.TimelineLayer): A list of #GESTimelineLayer sorted by priority
|
||||||
|
* NOTE: Do not modify.
|
||||||
|
* @tracks: (element-type GES.Track): A list of #GESTrack sorted by priority
|
||||||
|
* NOTE: Do not modify.
|
||||||
*/
|
*/
|
||||||
struct _GESTimeline {
|
struct _GESTimeline {
|
||||||
GstBin parent;
|
GstBin parent;
|
||||||
|
|
||||||
/* <readonly> */
|
/* <readonly> */
|
||||||
/* A list of GESTimelineLayer sorted by priority */
|
|
||||||
GList *layers;
|
GList *layers;
|
||||||
/* A list of private track data */
|
|
||||||
GList *tracks;
|
GList *tracks;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
|
|
Loading…
Reference in a new issue