ges: Hide more symbols of headers that are not installed
authorSebastian Dröge <sebastian@centricular.com>
Thu, 25 Jun 2015 08:28:41 +0000 (10:28 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 25 Jun 2015 08:28:41 +0000 (10:28 +0200)
ges/ges-auto-transition.h
ges/ges-internal.h
ges/ges-structure-parser.h
ges/gstframepositionner.h

index 95a97bc..a8d80bd 100644 (file)
@@ -69,9 +69,9 @@ struct _GESAutoTransition
   gpointer _ges_reserved[GES_PADDING];
 };
 
-GType ges_auto_transition_get_type (void) G_GNUC_CONST;
+G_GNUC_INTERNAL GType ges_auto_transition_get_type (void) G_GNUC_CONST;
 
-GESAutoTransition * ges_auto_transition_new (GESTrackElement * transition,
+G_GNUC_INTERNAL GESAutoTransition * ges_auto_transition_new (GESTrackElement * transition,
                                              GESTrackElement * previous_source,
                                              GESTrackElement * next_source);
 
index 159c2b7..28f0fde 100644 (file)
@@ -284,7 +284,7 @@ G_GNUC_INTERNAL gint element_end_compare                  (GESTimelineElement *
 G_GNUC_INTERNAL GstElementFactory *
 ges_get_compositor_factory                                (void);
 
-void
+G_GNUC_INTERNAL void
 ges_base_xml_formatter_set_timeline_properties(GESBaseXmlFormatter * self,
                                               GESTimeline *timeline,
                                               const gchar *properties,
@@ -294,7 +294,7 @@ ges_base_xml_formatter_set_timeline_properties(GESBaseXmlFormatter * self,
 /****************************************************
  *        GESCommandLineFormatter                   *
  ****************************************************/
-GOptionGroup *
+G_GNUC_INTERNAL GOptionGroup *
 _ges_command_line_formatter_get_option_group (void);
 
 /****************************************************
@@ -306,12 +306,12 @@ G_GNUC_INTERNAL void _ges_container_sort_children_by_end  (GESContainer *contain
 /****************************************************
  *                  GESClip                         *
  ****************************************************/
-void              ges_clip_set_layer              (GESClip *clip, GESLayer  *layer);
-gboolean          ges_clip_is_moving_from_layer   (GESClip *clip);
-guint32           ges_clip_get_layer_priority     (GESClip *clip);
-void              ges_clip_set_moving_from_layer  (GESClip *clip, gboolean is_moving);
-GESTrackElement*  ges_clip_create_track_element   (GESClip *clip, GESTrackType type);
-GList*            ges_clip_create_track_elements  (GESClip *clip, GESTrackType type);
+G_GNUC_INTERNAL void              ges_clip_set_layer              (GESClip *clip, GESLayer  *layer);
+G_GNUC_INTERNAL gboolean          ges_clip_is_moving_from_layer   (GESClip *clip);
+G_GNUC_INTERNAL guint32           ges_clip_get_layer_priority     (GESClip *clip);
+G_GNUC_INTERNAL void              ges_clip_set_moving_from_layer  (GESClip *clip, gboolean is_moving);
+G_GNUC_INTERNAL GESTrackElement*  ges_clip_create_track_element   (GESClip *clip, GESTrackType type);
+G_GNUC_INTERNAL GList*            ges_clip_create_track_elements  (GESClip *clip, GESTrackType type);
 
 
 /****************************************************
index 2e1954e..587c7ce 100644 (file)
@@ -48,17 +48,17 @@ struct _GESStructureParserClass
   GObjectClass parent_class;
 };
 
-GType ges_structure_parser_get_type (void) G_GNUC_CONST;
+G_GNUC_INTERNAL GType ges_structure_parser_get_type (void) G_GNUC_CONST;
 
-GError * ges_structure_parser_get_error (GESStructureParser *self);
-void ges_structure_parser_parse_string (GESStructureParser *self, const gchar *string, gboolean is_symbol);
-void ges_structure_parser_parse_default (GESStructureParser *self, const gchar *text);
-void ges_structure_parser_parse_whitespace (GESStructureParser *self);
-void ges_structure_parser_parse_symbol (GESStructureParser *self, const gchar *symbol);
-void ges_structure_parser_parse_setter (GESStructureParser *self, const gchar *setter);
-void ges_structure_parser_end_of_file (GESStructureParser *self);
+G_GNUC_INTERNAL GError * ges_structure_parser_get_error (GESStructureParser *self);
+G_GNUC_INTERNAL void ges_structure_parser_parse_string (GESStructureParser *self, const gchar *string, gboolean is_symbol);
+G_GNUC_INTERNAL void ges_structure_parser_parse_default (GESStructureParser *self, const gchar *text);
+G_GNUC_INTERNAL void ges_structure_parser_parse_whitespace (GESStructureParser *self);
+G_GNUC_INTERNAL void ges_structure_parser_parse_symbol (GESStructureParser *self, const gchar *symbol);
+G_GNUC_INTERNAL void ges_structure_parser_parse_setter (GESStructureParser *self, const gchar *setter);
+G_GNUC_INTERNAL void ges_structure_parser_end_of_file (GESStructureParser *self);
 
-GESStructureParser *ges_structure_parser_new(void);
+G_GNUC_INTERNAL GESStructureParser *ges_structure_parser_new(void);
 G_END_DECLS
 
 #endif  /* _GES_STRUCTURE_PARSER_H */
index c0b6615..6a12fdd 100644 (file)
@@ -73,11 +73,11 @@ struct _GstFramePositionnerMeta {
   guint zorder;
 };
 
-void ges_frame_positionner_set_source_and_filter (GstFramePositionner *pos,
+G_GNUC_INTERNAL void ges_frame_positionner_set_source_and_filter (GstFramePositionner *pos,
                                                  GESTrackElement *trksrc,
                                                  GstElement *capsfilter);
-GType gst_frame_positionner_get_type (void);
-GType
+G_GNUC_INTERNAL GType gst_frame_positionner_get_type (void);
+G_GNUC_INTERNAL GType
 gst_frame_positionner_meta_api_get_type (void);
 
 G_END_DECLS