utils: Annotate gst_util_filename_compare() parameters as filenames

They're not UTF-8 strings.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6063>
This commit is contained in:
Sebastian Dröge 2024-02-06 09:48:17 +02:00 committed by GStreamer Marge Bot
parent 8afc305fe2
commit 404e4ca626
2 changed files with 4 additions and 4 deletions

View file

@ -54390,11 +54390,11 @@ the result.</doc>
<parameters>
<parameter name="a" transfer-ownership="none">
<doc xml:space="preserve" filename="../subprojects/gstreamer/gst/gstutils.c">a filename to compare with @b</doc>
<type name="utf8" c:type="const gchar*"/>
<type name="filename" c:type="const gchar*"/>
</parameter>
<parameter name="b" transfer-ownership="none">
<doc xml:space="preserve" filename="../subprojects/gstreamer/gst/gstutils.c">a filename to compare with @a</doc>
<type name="utf8" c:type="const gchar*"/>
<type name="filename" c:type="const gchar*"/>
</parameter>
</parameters>
</function>

View file

@ -4804,8 +4804,8 @@ gst_type_is_plugin_api (GType type, GstPluginAPIFlags * flags)
/**
* gst_util_filename_compare:
* @a: a filename to compare with @b
* @b: a filename to compare with @a
* @a: (type filename): a filename to compare with @b
* @b: (type filename): a filename to compare with @a
*
* Compares the given filenames using natural ordering.
*