mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
taglist: Add missing scope to func param
This tell GI if this function is for actions (call) or is the answer of this method being asynchronous (async). In this case it's a call. This also silence warning from the GI scanner.
This commit is contained in:
parent
92087ba75a
commit
7fdb15d6a2
1 changed files with 2 additions and 2 deletions
|
@ -468,7 +468,7 @@ gst_tag_lookup (const gchar * tag_name)
|
|||
* @type: the type this data is in
|
||||
* @nick: human-readable name
|
||||
* @blurb: a human-readable description about this tag
|
||||
* @func: (allow-none): function for merging multiple values of this tag, or %NULL
|
||||
* @func: (allow-none) (scope call): function for merging multiple values of this tag, or %NULL
|
||||
*
|
||||
* Registers a new tag type for the use with GStreamer's type system. If a type
|
||||
* with that name is already registered, that one is used.
|
||||
|
@ -512,7 +512,7 @@ gst_tag_register (const gchar * name, GstTagFlag flag, GType type,
|
|||
* @type: the type this data is in
|
||||
* @nick: human-readable name or short description (string constant)
|
||||
* @blurb: a human-readable description for this tag (string constant)
|
||||
* @func: (allow-none): function for merging multiple values of this tag, or %NULL
|
||||
* @func: (allow-none) (scope call): function for merging multiple values of this tag, or %NULL
|
||||
*
|
||||
* Registers a new tag type for the use with GStreamer's type system.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue