doc: Add some missing Since:

This commit is contained in:
Thibault Saunier 2019-08-12 09:49:45 -04:00
parent 96e022658e
commit 91dd3e44a7
3 changed files with 11 additions and 0 deletions

View file

@ -694,6 +694,13 @@ ges_track_class_init (GESTrackClass * klass)
g_object_class_install_property (object_class, ARG_MIXING,
properties[ARG_MIXING]);
/**
* GESTrack::id:
*
* The stream-id of the underlying composition
*
* Since: 1.18
*/
properties[ARG_ID] =
g_param_spec_string ("id", "Id", "The stream-id of the composition",
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);

View file

@ -282,6 +282,8 @@ ges_uri_clip_asset_class_init (GESUriClipAssetClass * klass)
* GESUriClipAsset:is-nested-timeline:
*
* The duration (in nanoseconds) of the media file
*
* Since: 1.18
*/
properties[PROP_IS_NESTED_TIMELINE] =
g_param_spec_boolean ("is-nested-timeline", "Is nested timeline",

View file

@ -122,6 +122,8 @@ ges_base_bin_class_init (GESBaseBinClass * self_class)
* GESBaseBin:timeline:
*
* Timeline to use in this bin.
*
* Since: 1.16
*/
properties[PROP_TIMELINE] = g_param_spec_object ("timeline", "Timeline",
"Timeline to use in this src.",