ges-meta-container: Fix the GET_INTERFACE macro

It had a synthax issue

Fixes https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/issues/141

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8146>
This commit is contained in:
Thibault Saunier 2024-12-13 10:14:32 -03:00 committed by GStreamer Marge Bot
parent 58696d57f9
commit 5aadb25d0e
2 changed files with 8 additions and 1 deletions

View file

@ -5348,6 +5348,13 @@ efficient way of providing the list of contained #GESClip-s.</doc>
<record name="LayerPrivate" c:type="GESLayerPrivate" disguised="1" opaque="1">
<source-position filename="../subprojects/gst-editing-services/ges/ges-layer.h"/>
</record>
<function-macro name="META_CONTAINER_GET_INTERFACE" c:identifier="GES_META_CONTAINER_GET_INTERFACE" introspectable="0">
<source-position filename="../subprojects/gst-editing-services/ges/ges-meta-container.h"/>
<parameters>
<parameter name="inst">
</parameter>
</parameters>
</function-macro>
<constant name="META_DESCRIPTION" value="description" c:type="GES_META_DESCRIPTION">
<doc xml:space="preserve" filename="../subprojects/gst-editing-services/ges/ges-meta-container.h">The description of the object, to be used in various contexts (string).</doc>
<source-position filename="../subprojects/gst-editing-services/ges/ges-meta-container.h"/>

View file

@ -26,7 +26,7 @@
G_BEGIN_DECLS
#define GES_TYPE_META_CONTAINER (ges_meta_container_get_type ())
#define GES_META_CONTAINER_GET_INTERFACE (inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GES_TYPE_META_CONTAINER, GESMetaContainerInterface))
#define GES_META_CONTAINER_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GES_TYPE_META_CONTAINER, GESMetaContainerInterface))
GES_API
G_DECLARE_INTERFACE(GESMetaContainer, ges_meta_container, GES, META_CONTAINER, GObject);