mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
ges-formatter: don't use 'class' as function argument name in headers
It's a keyword in C++ and C++ compilers won't like it. https://bugzilla.gnome.org/show_bug.cgi?id=710172
This commit is contained in:
parent
ee36beb244
commit
71a6d75d75
3 changed files with 3 additions and 3 deletions
|
@ -72,7 +72,7 @@ struct _GESExtractableInterface
|
|||
const gchar *id);
|
||||
|
||||
gboolean (*register_metas) (GESExtractableInterface *self,
|
||||
GObjectClass *class,
|
||||
GObjectClass *klass,
|
||||
GESAsset *asset);
|
||||
|
||||
gpointer _ges_reserved[GES_PADDING];
|
||||
|
|
|
@ -135,7 +135,7 @@ struct _GESFormatterClass {
|
|||
|
||||
GType ges_formatter_get_type (void);
|
||||
|
||||
void ges_formatter_class_register_metas (GESFormatterClass * class,
|
||||
void ges_formatter_class_register_metas (GESFormatterClass * klass,
|
||||
const gchar *name,
|
||||
const gchar *description,
|
||||
const gchar *extension,
|
||||
|
|
|
@ -75,7 +75,7 @@ void ges_uri_clip_asset_new (const gchar *uri,
|
|||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GESUriClipAsset* ges_uri_clip_asset_request_sync (const gchar *uri, GError **error);
|
||||
void ges_uri_clip_asset_class_set_timeout (GESUriClipAssetClass *class,
|
||||
void ges_uri_clip_asset_class_set_timeout (GESUriClipAssetClass *klass,
|
||||
GstClockTime timeout);
|
||||
const GList * ges_uri_clip_asset_get_stream_assets (GESUriClipAsset *self);
|
||||
|
||||
|
|
Loading…
Reference in a new issue