diff --git a/docs/libs/ges-sections.txt b/docs/libs/ges-sections.txt index dc2134a78d..995b04ea6f 100644 --- a/docs/libs/ges-sections.txt +++ b/docs/libs/ges-sections.txt @@ -803,7 +803,7 @@ ges_title_source_set_font_desc ges_title_source_set_halignment ges_title_source_set_valignment ges_title_source_set_text_color -ges_title_clip_set_background_color_color +ges_title_source_set_background_color ges_title_source_set_xpos ges_title_source_set_ypos ges_title_source_get_text diff --git a/ges/ges-title-clip.c b/ges/ges-title-clip.c index 7032c1dd1f..19daa9419c 100644 --- a/ges/ges-title-clip.c +++ b/ges/ges-title-clip.c @@ -416,7 +416,7 @@ ges_title_clip_set_background (GESTitleClip * self, guint32 background) self->priv->background = background; for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) { - ges_title_clip_set_background_color_color (GES_TITLE_SOURCE (tmp->data), + ges_title_source_set_background_color (GES_TITLE_SOURCE (tmp->data), self->priv->background); } } @@ -622,7 +622,7 @@ ges_title_clip_create_track_element (GESClip * clip, GESTrackType type) ges_title_source_set_halignment ((GESTitleSource *) res, priv->halign); ges_title_source_set_valignment ((GESTitleSource *) res, priv->valign); ges_title_source_set_text_color ((GESTitleSource *) res, priv->color); - ges_title_clip_set_background_color_color ((GESTitleSource *) res, + ges_title_source_set_background_color ((GESTitleSource *) res, priv->background); ges_title_source_set_xpos ((GESTitleSource *) res, priv->xpos); ges_title_source_set_ypos ((GESTitleSource *) res, priv->ypos); diff --git a/ges/ges-title-source.c b/ges/ges-title-source.c index 6d32737929..a320a28567 100644 --- a/ges/ges-title-source.c +++ b/ges/ges-title-source.c @@ -282,14 +282,14 @@ ges_title_source_set_text_color (GESTitleSource * self, guint32 color) } /** - * ges_title_clip_set_background_color_color: + * ges_title_source_set_background_color: * @self: the #GESTitleSource* to set * @color: the color @self is being set to * * Sets the color of the background */ void -ges_title_clip_set_background_color_color (GESTitleSource * self, guint32 color) +ges_title_source_set_background_color (GESTitleSource * self, guint32 color) { GST_DEBUG ("self:%p, background color:%d", self, color); diff --git a/ges/ges-title-source.h b/ges/ges-title-source.h index e4d4e13be1..fa54f028c5 100644 --- a/ges/ges-title-source.h +++ b/ges/ges-title-source.h @@ -90,7 +90,7 @@ void ges_title_source_set_valignment (GESTitleSource *self, void ges_title_source_set_text_color (GESTitleSource *self, guint32 color); -void ges_title_clip_set_background_color_color (GESTitleSource *self, +void ges_title_source_set_background_color (GESTitleSource *self, guint32 color); void ges_title_source_set_xpos (GESTitleSource *self, gdouble position);