mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
ges: Keep internal symbols internal
The following implementation details where exposed as public symbols: - _ges_container_get_priority_offset - _ges_container_set_height - _ges_container_set_priority_offset - _ges_uri_asset_cleanup but it was not correct and that should never have been used outside GES. Moving those declarations to the internal header and marking as internal.
This commit is contained in:
parent
992472bf02
commit
fe2efd161d
4 changed files with 15 additions and 20 deletions
|
@ -144,20 +144,11 @@ gboolean ges_container_remove (GESContainer *container, GESTimelineElement *
|
||||||
GList * ges_container_ungroup (GESContainer * container, gboolean recursive);
|
GList * ges_container_ungroup (GESContainer * container, gboolean recursive);
|
||||||
GESContainer *ges_container_group (GList *containers);
|
GESContainer *ges_container_group (GList *containers);
|
||||||
|
|
||||||
/* To be used by subclasses only */
|
gboolean ges_container_edit (GESContainer * container,
|
||||||
void _ges_container_set_height (GESContainer * container,
|
GList * layers, gint new_layer_priority,
|
||||||
guint32 height);
|
GESEditMode mode,
|
||||||
gboolean ges_container_edit (GESContainer * container,
|
GESEdge edge,
|
||||||
GList * layers, gint new_layer_priority,
|
guint64 position);
|
||||||
GESEditMode mode,
|
|
||||||
GESEdge edge,
|
|
||||||
guint64 position);
|
|
||||||
gint _ges_container_get_priority_offset (GESContainer * container,
|
|
||||||
GESTimelineElement *elem);
|
|
||||||
void _ges_container_set_priority_offset (GESContainer * container,
|
|
||||||
GESTimelineElement *elem,
|
|
||||||
gint32 priority_offset);
|
|
||||||
|
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
#endif /* _GES_CONTAINER */
|
#endif /* _GES_CONTAINER */
|
||||||
|
|
|
@ -157,6 +157,8 @@ ges_effect_assect_id_get_type_and_bindesc (const char *id,
|
||||||
GESTrackType *track_type,
|
GESTrackType *track_type,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
||||||
|
G_GNUC_INTERNAL void _ges_uri_asset_cleanup (void);
|
||||||
|
|
||||||
/* GESExtractable internall methods
|
/* GESExtractable internall methods
|
||||||
*
|
*
|
||||||
* FIXME Check if that should be public later
|
* FIXME Check if that should be public later
|
||||||
|
@ -320,6 +322,14 @@ ges_base_xml_formatter_set_timeline_properties(GESBaseXmlFormatter * self,
|
||||||
****************************************************/
|
****************************************************/
|
||||||
G_GNUC_INTERNAL void _ges_container_sort_children (GESContainer *container);
|
G_GNUC_INTERNAL void _ges_container_sort_children (GESContainer *container);
|
||||||
G_GNUC_INTERNAL void _ges_container_sort_children_by_end (GESContainer *container);
|
G_GNUC_INTERNAL void _ges_container_sort_children_by_end (GESContainer *container);
|
||||||
|
G_GNUC_INTERNAL void _ges_container_set_height (GESContainer * container,
|
||||||
|
guint32 height);
|
||||||
|
G_GNUC_INTERNAL gint _ges_container_get_priority_offset (GESContainer * container,
|
||||||
|
GESTimelineElement *elem);
|
||||||
|
G_GNUC_INTERNAL void _ges_container_set_priority_offset (GESContainer * container,
|
||||||
|
GESTimelineElement *elem,
|
||||||
|
gint32 priority_offset);
|
||||||
|
|
||||||
|
|
||||||
/****************************************************
|
/****************************************************
|
||||||
* GESClip *
|
* GESClip *
|
||||||
|
|
|
@ -116,7 +116,5 @@ GstDiscovererStreamInfo * ges_uri_source_asset_get_stream_info (GESUriSource
|
||||||
const gchar * ges_uri_source_asset_get_stream_uri (GESUriSourceAsset *asset);
|
const gchar * ges_uri_source_asset_get_stream_uri (GESUriSourceAsset *asset);
|
||||||
const GESUriClipAsset *ges_uri_source_asset_get_filesource_asset (GESUriSourceAsset *asset);
|
const GESUriClipAsset *ges_uri_source_asset_get_filesource_asset (GESUriSourceAsset *asset);
|
||||||
|
|
||||||
void _ges_uri_asset_cleanup (void);
|
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
#endif /* _GES_URI_CLIP_ASSET */
|
#endif /* _GES_URI_CLIP_ASSET */
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
EXPORTS
|
EXPORTS
|
||||||
_ges_container_get_priority_offset
|
|
||||||
_ges_container_set_height
|
|
||||||
_ges_container_set_priority_offset
|
|
||||||
_ges_debug DATA
|
_ges_debug DATA
|
||||||
_ges_uri_asset_cleanup
|
|
||||||
ges_add_missing_uri_relocation_uri
|
ges_add_missing_uri_relocation_uri
|
||||||
ges_asset_cache_lookup
|
ges_asset_cache_lookup
|
||||||
ges_asset_extract
|
ges_asset_extract
|
||||||
|
|
Loading…
Reference in a new issue