track, composition: mark stream id properties as DOC_SHOW_DEFAULT

and update plugins cache

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/182>
This commit is contained in:
Mathieu Duponchelle 2020-06-04 23:14:59 +02:00
parent 91b98ebb5f
commit 10568c30d9
3 changed files with 5 additions and 3 deletions

View file

@ -268,7 +268,7 @@
"blurb": "The stream-id of the composition",
"construct": false,
"construct-only": false,
"default": "6a0fa13827e3ac0bd51c97439086d1d9",
"default": "NULL",
"readable": true,
"type": "gchararray",
"writable": true

View file

@ -771,7 +771,8 @@ ges_track_class_init (GESTrackClass * klass)
*/
properties[ARG_ID] =
g_param_spec_string ("id", "Id", "The stream-id of the composition",
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
NULL,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | GST_PARAM_DOC_SHOW_DEFAULT);
g_object_class_install_property (object_class, ARG_ID, properties[ARG_ID]);
gst_element_class_add_static_pad_template (gstelement_class,

View file

@ -1112,7 +1112,8 @@ nle_composition_class_init (NleCompositionClass * klass)
properties[PROP_ID] =
g_param_spec_string ("id", "Id", "The stream-id of the composition",
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
NULL,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | GST_PARAM_DOC_SHOW_DEFAULT);
g_object_class_install_properties (gobject_class, PROP_LAST, properties);
_signals[COMMITED_SIGNAL] =