ges: Minor typo fix

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5981>
This commit is contained in:
Thibault Saunier 2023-05-25 18:14:59 -04:00 committed by GStreamer Marge Bot
parent bc42175fd3
commit f205b357bd
2 changed files with 4 additions and 4 deletions

View file

@ -1499,7 +1499,7 @@ do_time_effect_change (GESClip * clip)
children = ges_container_get_children (GES_CONTAINER (clip), FALSE);
for (tmp = children; tmp; tmp = tmp-&gt;next)
ges_track_element_set_auto_clamp_control_source (tmp-&gt;data, FALSE);
ges_track_element_set_auto_clamp_control_sources (tmp-&gt;data, FALSE);
// add time effect, or set their children properties, or move them around
...
@ -1520,7 +1520,7 @@ do_time_effect_change (GESClip * clip)
// handle error
for (tmp = children; tmp; tmp = tmp-&gt;next)
ges_track_element_set_auto_clamp_control_source (tmp-&gt;data, TRUE);
ges_track_element_set_auto_clamp_control_sources (tmp-&gt;data, TRUE);
g_list_free_full (children, gst_object_unref);
gst_object_unref (source);

View file

@ -176,7 +176,7 @@
* children = ges_container_get_children (GES_CONTAINER (clip), FALSE);
*
* for (tmp = children; tmp; tmp = tmp->next)
* ges_track_element_set_auto_clamp_control_source (tmp->data, FALSE);
* ges_track_element_set_auto_clamp_control_sources (tmp->data, FALSE);
*
* // add time effect, or set their children properties, or move them around
* ...
@ -197,7 +197,7 @@
* // handle error
*
* for (tmp = children; tmp; tmp = tmp->next)
* ges_track_element_set_auto_clamp_control_source (tmp->data, TRUE);
* ges_track_element_set_auto_clamp_control_sources (tmp->data, TRUE);
*
* g_list_free_full (children, gst_object_unref);
* gst_object_unref (source);