mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
fix header file param names
This commit is contained in:
parent
da566f9521
commit
eb96fafc65
2 changed files with 11 additions and 11 deletions
|
@ -191,7 +191,7 @@ ges_track_video_title_source_set_text (GESTrackVideoTitleSource * self,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ges_track_video_title_source_set_font_desc:
|
* ges_track_video_title_source_set_font_desc:
|
||||||
* @self: the #GESTrackVideoTitleSource* to set text on
|
* @self: the #GESTrackVideoTitleSource
|
||||||
* @font_desc: the pango font description
|
* @font_desc: the pango font description
|
||||||
*
|
*
|
||||||
* Sets the text this track object will render.
|
* Sets the text this track object will render.
|
||||||
|
@ -214,7 +214,7 @@ ges_track_video_title_source_set_font_desc (GESTrackVideoTitleSource * self,
|
||||||
/**
|
/**
|
||||||
* ges_track_video_title_source_valignment:
|
* ges_track_video_title_source_valignment:
|
||||||
* @self: the #GESTrackVideoTitleSource* to set text on
|
* @self: the #GESTrackVideoTitleSource* to set text on
|
||||||
* @valignment: #GESTrackVideoTitleSrcVAlign
|
* @valign: #GESTrackVideoTitleSrcVAlign
|
||||||
*
|
*
|
||||||
* Sets the vertical aligment of the text.
|
* Sets the vertical aligment of the text.
|
||||||
*/
|
*/
|
||||||
|
@ -231,7 +231,7 @@ ges_track_video_title_source_set_valignment (GESTrackVideoTitleSource * self,
|
||||||
/**
|
/**
|
||||||
* ges_track_video_title_source_halignment:
|
* ges_track_video_title_source_halignment:
|
||||||
* @self: the #GESTrackVideoTitleSource* to set text on
|
* @self: the #GESTrackVideoTitleSource* to set text on
|
||||||
* @halignment: #GESTrackVideoTitleSrcHAlign
|
* @halign: #GESTrackVideoTitleSrcHAlign
|
||||||
*
|
*
|
||||||
* Sets the vertical aligment of the text.
|
* Sets the vertical aligment of the text.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -106,17 +106,17 @@ struct _GESTrackVideoTitleSourceClass {
|
||||||
|
|
||||||
GType ges_track_video_title_src_get_type (void);
|
GType ges_track_video_title_src_get_type (void);
|
||||||
|
|
||||||
void ges_track_video_title_source_set_text(GESTrackVideoTitleSource *, const
|
void ges_track_video_title_source_set_text(GESTrackVideoTitleSource *self, const
|
||||||
gchar *);
|
gchar *text);
|
||||||
|
|
||||||
void ges_track_video_title_source_set_font_desc(GESTrackVideoTitleSource *,
|
void ges_track_video_title_source_set_font_desc(GESTrackVideoTitleSource *self,
|
||||||
const gchar *);
|
const gchar *font_desc);
|
||||||
|
|
||||||
void ges_track_video_title_source_set_halignment(GESTrackVideoTitleSource *,
|
void ges_track_video_title_source_set_halignment(GESTrackVideoTitleSource
|
||||||
GESTrackVideoTitleSrcHAlign);
|
*self, GESTrackVideoTitleSrcHAlign halgn);
|
||||||
|
|
||||||
void ges_track_video_title_source_set_valignment(GESTrackVideoTitleSource *,
|
void ges_track_video_title_source_set_valignment(GESTrackVideoTitleSource
|
||||||
GESTrackVideoTitleSrcVAlign);
|
*self, GESTrackVideoTitleSrcVAlign valign);
|
||||||
|
|
||||||
GESTrackVideoTitleSource* ges_track_video_title_source_new (void);
|
GESTrackVideoTitleSource* ges_track_video_title_source_new (void);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue