mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
ges: Minor typo fix
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5981>
This commit is contained in:
parent
bc42175fd3
commit
f205b357bd
2 changed files with 4 additions and 4 deletions
|
@ -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->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
|
||||
...
|
||||
|
@ -1520,7 +1520,7 @@ do_time_effect_change (GESClip * clip)
|
|||
// 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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue