mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
TimelineObject: Put more function name in sync with others
This commit is contained in:
parent
7ef6f365d9
commit
7146c33617
2 changed files with 8 additions and 8 deletions
|
@ -263,8 +263,8 @@ GES_TYPE_TIMELINE_LAYER
|
|||
<TITLE>GESTimelineObject</TITLE>
|
||||
GESTimelineObject
|
||||
GESTimelineObjectClass
|
||||
CreateTrackObjectFunc
|
||||
CreateTrackObjectsFunc
|
||||
GESCreateTrackObjectFunc
|
||||
GESCreateTrackObjectsFunc
|
||||
GESFillTrackObjectFunc
|
||||
ges_timeline_object_set_inpoint
|
||||
ges_timeline_object_set_start
|
||||
|
|
|
@ -65,7 +65,7 @@ typedef gboolean (*GESFillTrackObjectFunc) (GESTimelineObject * object,
|
|||
GstElement * gnlobj);
|
||||
|
||||
/**
|
||||
* CreateTrackObjectFunc:
|
||||
* GESCreateTrackObjectFunc:
|
||||
* @object: a #GESTimelineObject
|
||||
* @track: a #GESTrack
|
||||
*
|
||||
|
@ -87,11 +87,11 @@ typedef gboolean (*GESFillTrackObjectFunc) (GESTimelineObject * object,
|
|||
* Returns: the #GESTrackObject to be used, or %NULL if it can't provide one
|
||||
* for the given @track.
|
||||
*/
|
||||
typedef GESTrackObject* (*CreateTrackObjectFunc) (GESTimelineObject * object,
|
||||
typedef GESTrackObject* (*GESCreateTrackObjectFunc) (GESTimelineObject * object,
|
||||
GESTrack * track);
|
||||
|
||||
/**
|
||||
* CreateTrackObjectsFunc:
|
||||
* GESCreateTrackObjectsFunc:
|
||||
* @object: a #GESTimelineObject
|
||||
* @track: a #GESTrack
|
||||
*
|
||||
|
@ -106,7 +106,7 @@ typedef GESTrackObject* (*CreateTrackObjectFunc) (GESTimelineObject * object,
|
|||
*
|
||||
* Returns: %TRUE on success %FALSE on failure.
|
||||
*/
|
||||
typedef gboolean (*CreateTrackObjectsFunc) (GESTimelineObject * object,
|
||||
typedef gboolean (*GESCreateTrackObjectsFunc) (GESTimelineObject * object,
|
||||
GESTrack *track);
|
||||
|
||||
/**
|
||||
|
@ -189,8 +189,8 @@ struct _GESTimelineObjectClass {
|
|||
GObjectClass parent_class;
|
||||
|
||||
/*< public >*/
|
||||
CreateTrackObjectFunc create_track_object;
|
||||
CreateTrackObjectsFunc create_track_objects;
|
||||
GESCreateTrackObjectFunc create_track_object;
|
||||
GESCreateTrackObjectsFunc create_track_objects;
|
||||
|
||||
/* FIXME : might need a release_track_object */
|
||||
GESFillTrackObjectFunc fill_track_object;
|
||||
|
|
Loading…
Reference in a new issue