mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
ges: Minor debug logging level and typo fixes
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/227>
This commit is contained in:
parent
6c5daf8c81
commit
7282e1e56c
3 changed files with 4 additions and 4 deletions
|
@ -444,7 +444,7 @@ ges_asset_finalize (GObject * object)
|
|||
{
|
||||
GESAssetPrivate *priv = GES_ASSET (object)->priv;
|
||||
|
||||
GST_DEBUG_OBJECT (object, "finalizing");
|
||||
GST_LOG_OBJECT (object, "finalizing");
|
||||
|
||||
if (priv->id)
|
||||
g_free (priv->id);
|
||||
|
|
|
@ -244,7 +244,7 @@ _load_and_parse (GESBaseXmlFormatter * self, const gchar * uri, GError ** error,
|
|||
|
||||
failed:
|
||||
g_object_unref (file);
|
||||
GST_WARNING ("failed to load contents from \"%s\"", uri);
|
||||
GST_INFO_OBJECT (self, "failed to load contents from \"%s\"", uri);
|
||||
g_propagate_error (error, err);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -1821,7 +1821,7 @@ ges_validate_register_action_types (void)
|
|||
.mandatory = FALSE,
|
||||
},
|
||||
{NULL}
|
||||
}, "Remove a child from @container-name.", GST_VALIDATE_ACTION_TYPE_NONE);
|
||||
}, "Set a keyframe on @element-name:property-name.", GST_VALIDATE_ACTION_TYPE_NONE);
|
||||
|
||||
gst_validate_register_action_type ("copy-element", "ges", _copy_element,
|
||||
(GstValidateActionParameter []) {
|
||||
|
@ -1886,7 +1886,7 @@ ges_validate_register_action_types (void)
|
|||
.mandatory = FALSE,
|
||||
},
|
||||
{NULL}
|
||||
}, "Remove a child from @container-name.", GST_VALIDATE_ACTION_TYPE_NONE);
|
||||
}, "Remove a keyframe on @element-name:property-name.", GST_VALIDATE_ACTION_TYPE_NONE);
|
||||
|
||||
gst_validate_register_action_type ("load-project", "ges", _load_project,
|
||||
(GstValidateActionParameter []) {
|
||||
|
|
Loading…
Reference in a new issue