ges-meta-container: Fix the GET_INTERFACE macro
authorThibault Saunier <tsaunier@igalia.com>
Fri, 13 Dec 2024 13:14:32 +0000 (10:14 -0300)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Fri, 13 Dec 2024 16:37:54 +0000 (16:37 +0000)
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>

girs/GES-1.0.gir
subprojects/gst-editing-services/ges/ges-meta-container.h

index 3ae0166e0163f3b7e5e1bb8adc95e6f854cb872d..559d1ea3ff950d48ac9e4aaa68be0ef644d0dd36 100644 (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"/>
index bc805954d5419eba05480751a7c226d440023ee9..33696b24ea1e2d143ba28538da699f24ab481c59 100644 (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);