spelling: fix committing

This commit is contained in:
Marc Leeman 2024-04-30 12:50:10 +02:00
parent 3f8decbc09
commit 9ec8ab9453
5 changed files with 9 additions and 9 deletions

View file

@ -2822,7 +2822,7 @@ ges_timeline_commit_unlocked (GESTimeline * timeline)
return res;
}
GST_DEBUG_OBJECT (timeline, "commiting changes");
GST_DEBUG_OBJECT (timeline, "committing changes");
timeline_tree_create_transitions (timeline->priv->tree,
ges_timeline_find_auto_transition);
@ -2943,7 +2943,7 @@ ges_timeline_commit_sync (GESTimeline * timeline)
gst_element_get_state (GST_ELEMENT (timeline), NULL, NULL,
GST_CLOCK_TIME_NONE);
/* Let's make sure no track gets added between now and the actual commiting */
/* Let's make sure no track gets added between now and the actual committing */
LOCK_DYN (timeline);
wait_for_signal = g_list_length (timeline->priv->priv_tracks) > 0
&& GST_STATE (timeline) >= GST_STATE_PAUSED;

View file

@ -2678,7 +2678,7 @@ _commit_func (NleComposition * comp, UpdateCompositionData * ucompo)
_post_start_composition_update (comp, ucompo->seqnum, ucompo->reason);
/* Get current so that it represent the duration it was
* before commiting children */
* before committing children */
curpos = query_ancestors_position (comp);
if (!_commit_all_values (comp, ucompo->reason)) {
@ -3619,7 +3619,7 @@ _nle_composition_add_object (NleComposition * comp, NleObject * object)
"inpoint", (GstClockTime) 0,
"duration", (GstClockTimeDiff) NLE_OBJECT_STOP (comp), NULL);
GST_INFO_OBJECT (object, "Used as expandable, commiting now");
GST_INFO_OBJECT (object, "Used as expandable, committing now");
nle_object_commit (NLE_OBJECT (object), FALSE);
}

View file

@ -663,7 +663,7 @@ nle_object_commit_func (NleObject * object, gboolean recurse)
update_values (object);
GST_DEBUG_OBJECT (object, "Done commiting");
GST_DEBUG_OBJECT (object, "Done committing");
return TRUE;
}
@ -781,7 +781,7 @@ nle_object_change_state (GstElement * element, GstStateChange transition)
if (g_strcmp0 (GST_ELEMENT_NAME (GST_ELEMENT (parent)), "current-bin")
&& !NLE_OBJECT_IS_COMPOSITION (NLE_OBJECT (element))) {
GST_INFO ("Adding nleobject to something that is not a composition,"
" commiting ourself");
" committing ourself");
nle_object_commit (NLE_OBJECT (element), FALSE);
}
@ -827,7 +827,7 @@ nle_object_set_commit_needed (NleObject * object)
{
if (G_UNLIKELY (object->commiting)) {
GST_WARNING_OBJECT (object,
"Trying to set 'commit-needed' while commiting");
"Trying to set 'commit-needed' while committing");
return;
}

View file

@ -104,7 +104,7 @@ struct _NleObject
gboolean pending_active;
gboolean commit_needed;
gboolean commiting; /* Set to TRUE during the commiting time only */
gboolean commiting; /* Set to TRUE during the committing time only */
gboolean expandable;

View file

@ -440,7 +440,7 @@ test_one_under_another_full (void)
nle_composition_add (GST_BIN (comp), source1);
nle_composition_add (GST_BIN (comp), source2);
check_start_stop_duration (comp, 0, 0 * GST_SECOND, 0 * GST_SECOND);
/* Now commiting changes */
/* Now committing changes */
commit_and_wait (comp, &ret);
check_start_stop_duration (comp, 0, 3 * GST_SECOND, 3 * GST_SECOND);
check_start_stop_duration (source1, 0, 2 * GST_SECOND, 2 * GST_SECOND);