meta: gst_meta_serialize() is not introspectable

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5355>
This commit is contained in:
Xavier Claessens 2023-12-15 17:47:02 -05:00 committed by GStreamer Marge Bot
parent f076a9bf2f
commit f545e79bee

View file

@ -454,13 +454,13 @@ gst_meta_register_internal (GType api, const gchar * impl, gsize size,
} }
/** /**
* gst_meta_register: * gst_meta_register: (skip):
* @api: the type of the #GstMeta API * @api: the type of the #GstMeta API
* @impl: the name of the #GstMeta implementation * @impl: the name of the #GstMeta implementation
* @size: the size of the #GstMeta structure * @size: the size of the #GstMeta structure
* @init_func: (scope async): a #GstMetaInitFunction * @init_func: a #GstMetaInitFunction
* @free_func: (scope async): a #GstMetaFreeFunction * @free_func: a #GstMetaFreeFunction
* @transform_func: (scope async): a #GstMetaTransformFunction * @transform_func: a #GstMetaTransformFunction
* *
* Register a new #GstMeta implementation. * Register a new #GstMeta implementation.
* *
@ -480,15 +480,15 @@ gst_meta_register (GType api, const gchar * impl, gsize size,
} }
/** /**
* gst_meta_register_serializable: * gst_meta_register_serializable: (skip):
* @api: the type of the #GstMeta API * @api: the type of the #GstMeta API
* @impl: the name of the #GstMeta implementation * @impl: the name of the #GstMeta implementation
* @size: the size of the #GstMeta structure * @size: the size of the #GstMeta structure
* @init_func: (scope async): a #GstMetaInitFunction * @init_func: a #GstMetaInitFunction
* @free_func: (scope async): a #GstMetaFreeFunction * @free_func: a #GstMetaFreeFunction
* @transform_func: (scope async): a #GstMetaTransformFunction * @transform_func: a #GstMetaTransformFunction
* @serialize_func: (scope async): a #GstMetaSerializeFunction * @serialize_func: a #GstMetaSerializeFunction
* @deserialize_func: (scope async): a #GstMetaDeserializeFunction * @deserialize_func: a #GstMetaDeserializeFunction
* *
* Same as gst_meta_register() but also set serialize/deserialize functions. * Same as gst_meta_register() but also set serialize/deserialize functions.
* *