diff --git a/girs/GES-1.0.gir b/girs/GES-1.0.gir index 44e2467c6b..c205e43a93 100644 --- a/girs/GES-1.0.gir +++ b/girs/GES-1.0.gir @@ -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); diff --git a/subprojects/gst-editing-services/ges/ges-clip.c b/subprojects/gst-editing-services/ges/ges-clip.c index f7b0332f1b..30478e2f24 100644 --- a/subprojects/gst-editing-services/ges/ges-clip.c +++ b/subprojects/gst-editing-services/ges/ges-clip.c @@ -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);