diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2018-03-13 13:45:24 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-03-13 13:45:35 +0000 |
commit | 3d1c00fbcd6a0d2b45bfffe8300479c65376075a (patch) | |
tree | 03d37d8d9f9222aa020f855b1f864e3ce7e4303f /ges/ges-formatter.h | |
parent | eff9363d3c21e4b4740f9acce0fdc0db9a8ddd74 (diff) |
ges: GST_EXPORT -> GST_GES_API
We need different export decorators for the different libs.
For now no actual change though, just rename before the release,
and add prelude headers to define the new decorator to GST_EXPORT.
Diffstat (limited to 'ges/ges-formatter.h')
-rw-r--r-- | ges/ges-formatter.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ges/ges-formatter.h b/ges/ges-formatter.h index 9ac6752e..8ba2cc50 100644 --- a/ges/ges-formatter.h +++ b/ges/ges-formatter.h @@ -138,10 +138,10 @@ struct _GESFormatterClass { gpointer _ges_reserved[GES_PADDING]; }; -GST_EXPORT +GST_GES_API GType ges_formatter_get_type (void); -GST_EXPORT +GST_GES_API void ges_formatter_class_register_metas (GESFormatterClass * klass, const gchar *name, const gchar *description, @@ -150,25 +150,25 @@ void ges_formatter_class_register_metas (GESFormatterClass * klass, gdouble version, GstRank rank); -GST_EXPORT +GST_GES_API gboolean ges_formatter_can_load_uri (const gchar * uri, GError **error); -GST_EXPORT +GST_GES_API gboolean ges_formatter_can_save_uri (const gchar * uri, GError **error); -GST_EXPORT +GST_GES_API gboolean ges_formatter_load_from_uri (GESFormatter * formatter, GESTimeline *timeline, const gchar *uri, GError **error); -GST_EXPORT +GST_GES_API gboolean ges_formatter_save_to_uri (GESFormatter * formatter, GESTimeline *timeline, const gchar *uri, gboolean overwrite, GError **error); -GST_EXPORT +GST_GES_API GESAsset *ges_formatter_get_default (void); G_END_DECLS |