mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
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:
parent
91b98ebb5f
commit
10568c30d9
3 changed files with 5 additions and 3 deletions
|
@ -268,7 +268,7 @@
|
||||||
"blurb": "The stream-id of the composition",
|
"blurb": "The stream-id of the composition",
|
||||||
"construct": false,
|
"construct": false,
|
||||||
"construct-only": false,
|
"construct-only": false,
|
||||||
"default": "6a0fa13827e3ac0bd51c97439086d1d9",
|
"default": "NULL",
|
||||||
"readable": true,
|
"readable": true,
|
||||||
"type": "gchararray",
|
"type": "gchararray",
|
||||||
"writable": true
|
"writable": true
|
||||||
|
|
|
@ -771,7 +771,8 @@ ges_track_class_init (GESTrackClass * klass)
|
||||||
*/
|
*/
|
||||||
properties[ARG_ID] =
|
properties[ARG_ID] =
|
||||||
g_param_spec_string ("id", "Id", "The stream-id of the composition",
|
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]);
|
g_object_class_install_property (object_class, ARG_ID, properties[ARG_ID]);
|
||||||
|
|
||||||
gst_element_class_add_static_pad_template (gstelement_class,
|
gst_element_class_add_static_pad_template (gstelement_class,
|
||||||
|
|
|
@ -1112,7 +1112,8 @@ nle_composition_class_init (NleCompositionClass * klass)
|
||||||
|
|
||||||
properties[PROP_ID] =
|
properties[PROP_ID] =
|
||||||
g_param_spec_string ("id", "Id", "The stream-id of the composition",
|
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);
|
g_object_class_install_properties (gobject_class, PROP_LAST, properties);
|
||||||
|
|
||||||
_signals[COMMITED_SIGNAL] =
|
_signals[COMMITED_SIGNAL] =
|
||||||
|
|
Loading…
Reference in a new issue